.prices-section {
  padding: 2rem 20px;
  background-color: #faf9f6;
  text-align: center;
  font-family: 'Red Hat Mono', serif;
}

.section-subtitle {
  color: #444;
  font-size: 18px;
  margin-bottom: 60px;
}

.price-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.price-card {
  background: white;
  border: 2px solid #B68D40;
  border-radius: 16px;
  padding: 40px 30px;
  width: 300px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  color: #B68D40;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.price-card.highlight {
  background-color: #B68D40;
  color: white;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.price-card .price {
  font-size: 36px;
  font-weight: bold;
  color: inherit;
}

.price-card .price span {
  font-size: 16px;
  opacity: 0.8;
}

.season-period {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.8;
}

.included {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.included li {
  font-size: 16px;
  margin: 8px 0;
}

.note {
  margin-top: 30px;
  font-size: 16px;
  color: #555;
}

.price-details {
  margin-top: 40px;
  padding: 25px 30px;
  text-align: center;
}

.price-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  font-size: 17px;
  color: #333;
}

.price-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.price-details i {
  color: #B68D40;
  text-shadow: 0 0 5px rgba(182,141,64,0.4);
}


