/* CTA Section Styles */
.cta-section {
  padding: 50px;
  background-color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c2d5b;
  position: relative;
  padding-bottom: 15px;
}

.cta-content h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ff9800;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.primary-button {
  display: inline-block;
  padding: 10px 18px;
  background-color: #2c2d5b;
  color: white !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #2c2d5b;
  box-shadow: 0 4px 12px rgba(44, 45, 91, 0.2);
}

.primary-button:hover {
  background-color: #ff9800 !important;
  border-color: #ff9800 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 152, 0, 0.3) !important;
}

.secondary-button {
  display: inline-block;
  padding: 10px 18px;
  background-color: transparent;
  color: #2c2d5b !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #2c2d5b;
}

.secondary-button:hover {
  background-color: rgba(255, 152, 0, 0.1) !important;
  border-color: #ff9800 !important;
  color: #ff9800 !important;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .cta-section {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 30px 25px;
  }
  
  .cta-content h2 {
    font-size: 26px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .primary-button, 
  .secondary-button {
    width: 100%;
  }
}