.cta-section {
  padding: 8rem 0;
  background-color: var(--color-mango);
  color: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--color-dark);
  border-bottom: 5px solid var(--color-dark);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.cta-text {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 3rem;
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Background Doodles */
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.cta-section::before {
  top: 10%;
  left: 5%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 50 L60 60 L50 90 L40 60 L10 50 L40 40 Z' fill='%23111'/%3E%3C/svg%3E");
  transform: rotate(-15deg);
}

.cta-section::after {
  bottom: 10%;
  right: 5%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23111' stroke-width='8' fill='none' stroke-dasharray='10 15'/%3E%3C/svg%3E");
  transform: rotate(20deg);
}

/* Responsive */
@media (max-width: 575px) {
  .cta-title {
    font-size: 2.5rem;
  }
  .cta-text {
    font-size: 1.25rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
