/* Benefits Section Styles */

.benefits-section {
  background-color: #f8f9fa;
}

.benefits-content {
  padding-right: 2rem;
}

.benefits-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #030040;
  line-height: 1.2;
}

/* Benefit Items */
.benefit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #0e3880;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.benefit-text {
  flex: 1;
}

.benefit-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #030040;
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA Card */
.benefits-cta-card {
  background: linear-gradient(135deg, #0e3880 0%, #030040 100%);
  color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(14, 56, 128, 0.2);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(249, 178, 51, 0.2);
  color: #F9B233;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(249, 178, 51, 0.3);
}

.cta-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.3;
}

.cta-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* CTA Buttons */
.btn-benefits-primary {
  background-color: #F9B233;
  color: #030040;
  border: none;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-benefits-primary:hover {
  background-color: #ffc04d;
  color: #030040;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 178, 51, 0.4);
}

.btn-benefits-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-benefits-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
  .benefits-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .benefits-title {
    font-size: 1.75rem;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .benefit-heading {
    font-size: 1.125rem;
  }
  
  .benefit-description {
    font-size: 0.95rem;
  }
  
  .benefits-cta-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .benefits-title {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    gap: 1rem;
  }
  
  .benefit-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .cta-title {
    font-size: 1.25rem;
  }
  
  .cta-description {
    font-size: 0.95rem;
  }
}
