.why-choose-us {
  background-color: #f9f9f9;
}

.section-subtitle {
  text-align: center;
  color: #D33958;
  font-size: 1.2rem;
  margin-bottom: 50px;
  font-weight: 400;
}

/* Сетка преимуществ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(211, 57, 88, 0.1);
  border-radius: 50%;
}

.benefit-icon img {
  width: 40px;
  height: 40px;
}

.benefit-card h3 {
  color: #3A121C;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Специальные предложения */
.special-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.offer {
  padding: 30px;
  border-radius: 10px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
  z-index: 1;
}

.offer h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.offer p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  line-height: 1.5;
}

.offer-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: white;
  color: #D33958;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

.offer-btn:hover {
  background-color: #3A121C;
  color: white;
}

.hot-offer {
  background: url("../../img/hot-tours-bg.c47dac914a7d.webp") center/cover;
}

.early-offer {
  background: url("../../img/early-booking-bg.4e1d73d552d5.webp") center/cover;
}

/* Блоки для целевой аудитории */
.target-audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.audience-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.audience-card h3 {
  color: #3A121C;
  font-size: 1.5rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #D33958;
}

.audience-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.audience-card ul {
  list-style: none;
  padding: 0;
}

.audience-card ul li {
  padding: 8px 0;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.audience-card ul li::before {
  content: '✓';
  color: #D33958;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.family {
  border-top: 5px solid #4CAF50;
}

.youth {
  border-top: 5px solid #2196F3;
}

/* Адаптивность */
@media (max-width: 768px) {

  .section-subtitle {
    font-size: 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .special-offers {
    grid-template-columns: 1fr;
  }

  .target-audience {
    grid-template-columns: 1fr;
  }

  .offer {
    min-height: 180px;
  }

  .benefit-card, .offer, .audience-card {
    padding: 20px 15px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon img {
    width: 30px;
    height: 30px;
  }
}