/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subheading {
  font-size: 1.25rem;
  color: #e0e7ff;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-section-button {
  display: inline-block;
  background: #ffffff;
  color: #1e3a8a;
  padding: 16px 48px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-section-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: #f0f4ff;
  color: #1e3a8a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-subheading {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }

  .cta-section-button {
    padding: 14px 36px;
    font-size: 1rem;
  }
}
