/* CTA Banner Section Styles */
.cta-banner-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.cta-banner-container {
  width: 93%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-title {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-but {
  display: inline-block;
  background-color: #4790ff !important;
  color: #ffffff;
  padding: 12px 48px;
  border-radius: 8px;
  cursor: pointer !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  transition: all 0.3s ease;
  border: 2px solid #4790ff;
  text-transform: none;
}

.cta-but:hover {
  background-color: #4790ff;
  border-color: #4790ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(71, 144, 255, 0.3);
  text-decoration: none;
}

/* Decorative Elements */
.cta-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
}

/* Top Right Pattern */
.circle-1 {
  width: 60px;
  height: 60px;
  top: 10px;
  right: 20px;
  background: #7dadf5;
}

.circle-2 {
  width: 40px;
  height: 40px;
  top: 35px;
  right: 90px;
  background: #9bc3ff;
}

.circle-3 {
  width: 20px;
  height: 20px;
  top: 70px;
  right: 65px;
  background: #83b4ff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .cta-banner-section {
    padding: 40px 0;
    background-color: #ffffff;
  }
  .cta-banner {
    padding: 50px 35px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .circle-1 {
    width: 60px;
    height: 60px;
    right: 20px;
  }

  .circle-2 {
    width: 30px;
    height: 30px;
    right: 85px;
  }

  .circle-3 {
    width: 15px;
    height: 15px;
    right: 65px;
    top: 70px;
  }
}

@media (max-width: 900px) {
  .cta-banner-section {
    padding: 30px 0;
    background-color: #ffffff;
  }

  .cta-banner-container {
    padding: 0 16px;
  }

  .cta-banner {
    padding: 40px 30px;
    border-radius: 16px;
  }

  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .cta-but {
    padding: 8px 15px;
    font-size: 22px;
  }

  /* Simplified pattern for mobile */
  .circle-1 {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 30px;
  }

  .circle-2 {
    width: 25px;
    height: 25px;
    top: 25px;
    right: 110px;
  }

  .circle-3 {
    width: 10px;
    height: 10px;
    top: 15px;
    right: 160px;
  }
}

@media (max-width: 600px) {
  .cta-banner-section {
    padding: 20px 0;
    background-color: #ffffff;
  }
  .cta-banner {
    padding: 35px 20px;
    border-radius: 12px;
  }

  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .cta-but {
    padding: 5px 10px;
    font-size: 20px;
  }

  /* Further simplified for small screens */
  .circle-1 {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 20px;
  }

  .circle-2 {
    width: 20px;
    height: 20px;
    top: 20px;
    right: 80px;
  }

  .circle-3 {
    width: 8px;
    height: 8px;
    top: 12px;
    right: 120px;
  }
}

