.package-section {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #f0f4ff, #ffffff);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.package-title {
  font-size: 28px;
  color: #1a237e;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: 'DM Serif Text', serif;
}

.package-subtitle {
  color: #333;
  font-size: 16px;
  margin-bottom: 30px;
}

.package-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.package-card h3 {
  color: #0052cc;
  font-size: 18px;
  font-weight: bold;
  margin: 16px 0 10px;
}

.package-card ul {
  list-style: none;
  padding: 0 20px;
  margin-bottom: 20px;
  text-align: left;
}

.package-card li {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.package-card i.fas {
  color: #2ecc40;
  margin-right: 8px;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  font-size: 15px;
  font-weight: bold;
  padding: 12px 18px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-btn i {
  margin-right: 8px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
}
.highlight-section {
  text-align: left;
  padding: 0 20px;
  margin-bottom: 15px;
}

.highlight-section h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.highlight-section h4 i {
  color: #e09c00;
  margin-right: 6px;
}