@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Section colors */
.cta-section {
  position: relative;
  background-color: #3B82F6;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* Stripe line */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.1) 0 2px,
      transparent 2px 20px
    );
  pointer-events: none;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}


.cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}


.btn-cta {
  display: inline-block;
  background-color: #60A5FA;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-cta:hover {
  background-color: #93C5FD;
  transform: translateY(-2px);
}

/* Small mobile changes */
@media (max-width: 600px) {
  .cta-heading {
    font-size: 2rem;
  }
  .btn-cta {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
