.pricing-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Header */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-header h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.pricing-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Highlight for Best Value/Popular Cards */
.pricing-card.popular {
  border: 2px solid #1f472d;
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-10px);
}

.badge-popular {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #5bec67;
  color: #000000;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-card.premium {
  border-top: 5px solid #9b59b6;
}

/* Card Content */
.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 5px;
}

.plan-duration {
  color: #95a5a6;
  font-size: 0.9rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 12px;
  color: #555;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
}

.plan-features li i,
.plan-features li span.icon {
  margin-right: 10px;
  color: #27ae60;
  /* Green check */
  font-weight: bold;
}

.plan-features li.disabled {
  color: #bbb;
}

.plan-features li.disabled i,
.plan-features li.disabled span.icon {
  color: #ddd;
}

.best-for {
  background-color: #f0f8ff;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-top: auto;
}

.btn-outline {
  border: 2px solid #1f472d;
  color: #1f472d;
  background: transparent;
}

.btn-outline:hover {
  background: #1f472d;
  color: #fff;
}

.btn-primary {
  background: #1f472d;
  color: #fff;
  border: 2px solid #1f472d;
}

.btn-premium {
  background: #1f472d;
  color: #fff;
  border: 2px solid #1f472d;
}

.btn-premium:hover,
.btn-primary:hover
 {
  background: #5bec67;
  border-color: #5bec67;
  color: #000000;
  font-weight: bold;
}

/* About Section */
.about-mutual-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

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

.about-content h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 100%;
  }

  .pricing-card.popular {
    transform: none;
  }

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