.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  color: #fff;
}
.cta-section h2 {
  color: #fff;
}
@media (max-width: 767px) {
  .cta-section {
    padding: 4rem 0;
  }
}
.cta-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 80, 0, 0.9) 0%, rgba(0, 166, 255, 0.8) 100%);
  opacity: 0.9;
  z-index: 1;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 0.5rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.1);
}
.cta-section .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cta-section .cta-title {
    font-size: 2rem;
  }
}
.cta-section .cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cta-section .cta-text {
    font-size: 1rem;
  }
}
.cta-section .cta-text p {
  margin-bottom: 1rem;
}
.cta-section .cta-text p:last-child {
  margin-bottom: 0;
}
.cta-section .cta-button .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: #fff;
  color: #ff5000;
  border-color: #fff;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .cta-section .cta-button .btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}
.cta-section .cta-button .btn:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.cta-section .cta-button .btn .after {
  color: #fff;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cta-section .pulse {
  animation: pulse 2s infinite;
}