/* Общие стили */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

header {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  position: relative;
}

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

/* Меню */
nav {
  background-color: #222;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #ffcb05;
  color: #111;
}

h1 {
  font-size: 32px;
  margin: 10px 0 5px;
}

main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  background-color: #2b2b2b;
  color: #fff;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

section h2 {
  color: #ffcb05;
  margin-top: 0;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

blockquote {
  background-color: #1c1c1c;
  border-left: 4px solid #ffcb05;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  font-style: italic;
}

footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* Иконки мессенджеров */
.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

/* Цветные кнопки для мессенджеров */
a[href*="wa.me"] img {
  background-color: #25D366;
}

a[href*="t.me"] img {
  background-color: #0088cc;
}

a[href*="viber"] img {
  background-color: #7360f2;
}

/* Кнопка WhatsApp “Связаться с нами” */
.contact-button {
  background-color: #25D366;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #1fa653;
}
/* Эмодзи-флажки в логистике */
#logistics ul li {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #1c1c1c;
  padding: 10px 14px;
  border-radius: 8px;
}
