body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.logistics-section {
  padding: 50px 20px;
  background: #f4f9ff; /* фон секции */
  text-align: center;
}

/* Заголовок */
.logistics-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

/* Контейнер писем */
.letters-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Карточка письма */
.letter-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
  flex: 1 1 300px;
}

/* Эффект при наведении */
.letter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Изображение */
.letter-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
/* Шапка */
header {
  background-color: #4b4a5a; /* фон логотипа */
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Логотип */
.logo img {
  height: 55px;
  margin-left: 135px;
}

/* Навигация */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  margin-right: 90px;
}

nav ul li a {
  text-decoration: none;
  font-size: 18px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  background: linear-gradient(90deg, #d4af37, #f5d97a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s;
}
/* Кнопка */
.btn-contact {
  background: linear-gradient(90deg, #d4af37, #f5d97a);
  color: #4b4a5a !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  -webkit-text-fill-color: initial; /* отменяем прозрачный текст */
}

.btn-contact:hover {
  background: linear-gradient(90deg, #f5d97a, #fff3b0);
  color: #1a1a1a !important;
}
nav ul li a:hover {
  opacity: 0.8; /* лёгкий эффект при наведении */
}
/* Гамбургер */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #d4af37;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .logo img {
    margin-left: -20px;
  }

  nav ul {
    gap: 20px;
    margin-right: 30px;
  }
}

/* 768px ↓ */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #4b4a5a;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    margin: 0;
  }

  nav ul li a {
    font-size: 20px;
  }

  .btn-contact {
    margin-top: 10px;
  }
}

/* 600px ↓ */
@media (max-width: 600px) {
  .logo img {
    height: 48px;
    margin-left: 15px;
  }

  .menu-toggle {
    font-size: 28px;
  }

  nav ul li a {
    font-size: 19px;
  }

  .btn-contact {
    font-size: 15px;
    padding: 8px 16px;
  }
}

/* 480px ↓ */
@media (max-width: 480px) {
  .logo img {
    height: 45px;
    margin-left: 10px;
  }

  .menu-toggle {
    font-size: 26px;
  }

  nav ul li a {
    font-size: 18px;
  }
}

/* 360px ↓ */
@media (max-width: 360px) {
  header {
    padding: 10px 15px;
  }

  .logo img {
    height: 40px;
  }

  nav ul li a {
    font-size: 16px;
  }

  .btn-contact {
    font-size: 14px;
    padding: 8px 14px;
  }
}