/* CTA Section Styling */
.cta-section {
  padding: 100px 0 80px;
  background-color: var(--color-secondary);
  text-align: center;
  margin-top: 60px;
}

.cta-section .section-title {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.cta-section .section-title h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--color-primary-dark);
  font-weight: normal;
}

.cta-section p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}