body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f5f5f5;
  color: #333;
}

h1 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
}

.package-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.package-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.package-info {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.price {
  font-weight: 600;
  color: #e67e22;
  font-size: 16px;
}

.toggle-icon {
  font-size: 20px;
  color: #555;
  cursor: pointer;
}

.details-list {
  list-style: none;
  margin: 0;
  padding: 0 15px 15px 15px;
  display: none;
  border-top: 1px solid #eee;
}

.details-list li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f1f1;
}

.details-list li:last-child {
  border-bottom: none;
}

.book-btn {
  margin: 10px 15px 15px 15px;
  background: #27ae60;
  color: white;
  padding: 10px 15px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #219150;
}

@media (max-width: 768px) {
  .package-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 22px;
  }
  .package-info h2 {
    font-size: 16px;
  }
}
