<!-- module.css -->
<style>
.cta-section-wrapper {
  background: linear-gradient(135deg, #FF0080 0%, #FF1493 100%);
  padding: 80px 20px;
  width: 100%;
}

.cta-section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-content {
  flex: 1;
  min-width: 300px;
}

.cta-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  font-style: normal;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  line-height: 43.32px;
  letter-spacing: -1px;
  vertical-align: middle;
  text-transform: capitalize;
}

.cta-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  color: #FFFFFF;
  margin: 0;
  line-height: 32px;
  letter-spacing: 0;
  vertical-align: middle;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 20.8px;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 1;
  padding: 0 40px;
}

.cta-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000000;
  transition: height 0.4s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  height: 100%;
}

.cta-btn-primary {
  width: 190px;
  background-color: #FFFFFF;
  color: #000000;
  border: 3px solid #FFFFFF;
}

.cta-btn-primary:hover {
  color: #FFFFFF;
  border-color: #000000;
}

.cta-btn-secondary {
  width: 260px;
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.cta-btn-secondary:hover {
  color: #FFFFFF;
  border-color: #000000;
}

/* Responsive Design */
@media (max-width: 968px) {
  .cta-section-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-heading {
    font-size: 42px;
  }
  
  .cta-description {
    margin: 0 auto;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-section-wrapper {
    padding: 60px 20px;
  }
  
  .cta-heading {
    font-size: 36px;
  }
  
  .cta-description {
    font-size: 18px;
  }
  
  .cta-btn {
    padding: 16px 32px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  
  .cta-buttons {
    width: 100%;
  }
}
</style>
