/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--themethirdclr), var(--themehovertwo));
  color: var(--plainclr);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, var(--themeprimaryclr), var(--themesecondaryclr), var(--themeprimaryclr));
}

.cta-title {
  font-family: var(--secondaryfont);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.btn-large {
  padding: 14px 28px !important;
  font-size: 1.1rem !important;
}

.cta-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 1.1rem;
}

.cta-info p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-info i {
  color: var(--themeprimaryclr);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .btn-large {
    padding: 10px 20px !important;
    font-size: 1rem !important;
  }
  .cta-info {
    justify-content: start;
    gap: 15px;
    font-size: 1rem;
  }
  .footer-legal a {
    font-size: 0.9rem;
  }
  .cta-section {
    margin: 0 auto 25px;
  }
}
@media (max-width: 576px) {
  .cta-title {
    font-size: 1.3rem;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=cta-section.css.map */