.hero-section {
  padding: 140px 20px 20px;
  text-align: center;
  color: #006769;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.travel-section,
.hotel-section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #006769;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.travel-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.travel-card h3 {
  color: #006769;
  margin-bottom: 15px;
}

.travel-card p {
  line-height: 1.7;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hotel-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
}

.hotel-card:hover {
  transform: translateY(-6px);
}

.hotel-card h3 {
  margin-bottom: 12px;
  color: #006769;
}

.hotel-card p {
  margin-bottom: 12px;
}

.price {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.low {
  background: #e8f5e9;
}

.mid {
  background: #fff8e1;
}

.high {
  background: #ffebee;
}

.hotel-card a {
  display: inline-block;
  text-decoration: none;
  background: #006769;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.hotel-card a:hover {
  opacity: .9;
}

.price-guide {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .travel-grid,
  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 20px 60px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .travel-grid,
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }
}