/*=========================================================
    TESTIMONIALS PAGE
    HERO SECTION
=========================================================*/

/*=========================================
        HERO SECTION
=========================================*/

.service-hero {
  background: url("../images/testimonials-banner.jpg") no-repeat center center;

  background-size: cover;
}

/*=========================================
        HERO OVERLAY
=========================================*/

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at left center,
      rgba(255, 248, 235, 0.95) 0%,
      rgba(255, 248, 235, 0.72) 30%,
      rgba(255, 248, 235, 0.3) 60%,
      rgba(255, 248, 235, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.55) 40%,
      rgba(255, 255, 255, 0.12) 72%,
      rgba(255, 255, 255, 0) 100%
    );
}

/*=========================================
        DECORATION
=========================================*/

.service-hero::before {
  content: "";

  position: absolute;

  width: 650px;

  height: 650px;

  left: -250px;

  top: -180px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.12),
    transparent 72%
  );
}

.service-hero::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -120px;

  bottom: -120px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.08);
}

/*=========================================
        CONTAINER
=========================================*/

.service-hero .container {
  position: relative;

  z-index: 5;
}

/*=========================================
        GRID
=========================================*/

.service-hero-wrapper {
  display: grid;

  grid-template-columns: 1fr;

  align-items: center;
}

/*=========================================
        HERO CONTENT
=========================================*/

.service-hero-content {
  max-width: 720px;

  opacity: 1;

  transform: translateY(40px);

  transition: 0.9s ease;
}

.service-hero-content.show {
  opacity: 1;

  transform: translateY(0);
}

/*=========================================
        BREADCRUMB
=========================================*/

.breadcrumb {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 25px;

  font-size: 15px;
}

.breadcrumb a {
  color: #5f6674;

  text-decoration: none;

  transition: 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--primary);

  font-weight: 600;
}

/*=========================================
        HERO TAG
=========================================*/

.hero-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.12);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 30px;
}

.hero-tag::before {
  content: "";

  width: 32px;

  height: 2px;

  background: var(--primary);
}

/*=========================================
        TITLE
=========================================*/

.service-hero-content h1 span {
  display: block;

  color: var(--primary);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .service-hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .service-hero {
    min-height: auto;

    padding: 110px 0 90px;
  }

  .service-hero-wrapper {
    min-height: auto;
  }

  .service-hero-content {
    max-width: 100%;

    text-align: center;

    margin: auto;
  }

  .service-hero-content p {
    margin: auto;
  }

  .breadcrumb {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 90px 0 70px;
  }

  .service-hero-content h1 {
    font-size: 42px;
  }

  .service-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .service-hero-content h1 {
    font-size: 34px;
  }

  .breadcrumb {
    flex-wrap: wrap;

    justify-content: center;

    font-size: 14px;
  }

  .hero-tag {
    font-size: 12px;

    padding: 10px 18px;
  }
}
/*=========================================================
    TESTIMONIALS PAGE
    TESTIMONIAL CARDS
=========================================================*/

/*=========================================
        TESTIMONIAL SECTION
=========================================*/

.testimonial-section {
  position: relative;

  padding: 100px 0;

  background: #ffffff;

  overflow: hidden;
}

/*=========================================
        BACKGROUND DECORATION
=========================================*/

.testimonial-section::before {
  content: "";

  position: absolute;

  width: 620px;

  height: 620px;

  left: -260px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.testimonial-section::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        SECTION HEADER
=========================================*/

.section-header {
  position: relative;

  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;

  z-index: 2;
}

.section-header .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 22px;
}

.section-header .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.section-header h2 {
  font-size: 48px;

  color: var(--secondary);

  line-height: 1.2;

  margin-bottom: 22px;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  color: #667085;

  font-size: 17px;

  line-height: 1.9;
}

/*=========================================
        GRID
=========================================*/

.testimonial-grid {
  position: relative;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  z-index: 2;
}

/*=========================================
        CARD
=========================================*/

.testimonial-card {
  position: relative;

  background: #ffffff;

  padding: 40px;

  border-radius: 28px;

  border: 1px solid rgba(0, 0, 0, 0.05);

  transition: 0.35s ease;

  overflow: hidden;

  opacity: 1;

  transform: translateY(40px);
}

.testimonial-card.show {
  opacity: 1;

  transform: translateY(0);
}

.testimonial-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: var(--primary);

  transform: scaleX(0);

  transition: 0.35s;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/*=========================================
        FEATURED CARD
=========================================*/

.testimonial-card.featured {
  background: linear-gradient(135deg, #ffffff, #fffaf1);

  border: 2px solid rgba(184, 138, 27, 0.15);
}

/*=========================================
        QUOTE ICON
=========================================*/

.quote-icon {
  width: 70px;

  height: 70px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 18px;

  background: rgba(184, 138, 27, 0.1);

  margin-bottom: 28px;

  transition: 0.35s;
}

.quote-icon i {
  font-size: 28px;

  color: var(--primary);
}

.testimonial-card:hover .quote-icon {
  background: var(--primary);

  transform: rotate(-8deg);
}

.testimonial-card:hover .quote-icon i {
  color: #ffffff;
}

/*=========================================
        STARS
=========================================*/

.testimonial-rating {
  display: flex;

  gap: 6px;

  margin-bottom: 22px;
}

.testimonial-rating i {
  color: #f6b400;

  font-size: 18px;
}

/*=========================================
        TEXT
=========================================*/

.testimonial-text {
  color: #667085;

  line-height: 1.9;

  font-size: 16px;

  margin-bottom: 35px;

  font-style: italic;
}

/*=========================================
        AUTHOR
=========================================*/

.testimonial-author {
  display: flex;

  align-items: center;

  gap: 16px;
}

.testimonial-author img {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid rgba(184, 138, 27, 0.15);
}

.testimonial-author h4 {
  font-size: 20px;

  color: var(--secondary);

  margin-bottom: 6px;
}

.testimonial-author span {
  color: #667085;

  font-size: 14px;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .testimonial-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 35px 30px;
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    text-align: center;

    padding: 30px 25px;
  }

  .quote-icon {
    margin: 0 auto 25px;
  }

  .testimonial-rating {
    justify-content: center;
  }

  .testimonial-author {
    flex-direction: column;

    text-align: center;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .section-header p {
    font-size: 15px;
  }
}
/*=========================================================
    TESTIMONIALS PAGE
    TRUST SECTION
=========================================================*/

/*=========================================
        TRUST SECTION
=========================================*/

.trust-section {
  position: relative;

  padding: 100px 0;

  background: var(--light);

  overflow: hidden;
}

/*=========================================
        BACKGROUND DECORATION
=========================================*/

.trust-section::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  top: -250px;

  right: -250px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.trust-section::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  left: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        WRAPPER
=========================================*/

.trust-wrapper {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;

  z-index: 2;
}

/*=========================================
        CONTENT
=========================================*/

.trust-content {
  opacity: 1;

  transform: translateX(-40px);

  transition: 0.8s ease;
}

.trust-content.show {
  opacity: 1;

  transform: translateX(0);
}

.trust-content .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 22px;
}

.trust-content .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.trust-content h2 {
  font-size: 46px;

  color: var(--secondary);

  line-height: 1.2;

  margin-bottom: 25px;
}

.trust-content h2 span {
  color: var(--primary);
}

.trust-content p {
  color: #667085;

  line-height: 1.9;

  font-size: 17px;
}

/*=========================================
        STATS GRID
=========================================*/

.trust-stats {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

/*=========================================
        STAT CARD
=========================================*/

.stat-card {
  position: relative;

  background: #ffffff;

  padding: 40px 30px;

  border-radius: 24px;

  text-align: center;

  border: 1px solid rgba(0, 0, 0, 0.05);

  overflow: hidden;

  transition: 0.35s ease;

  opacity: 1;

  transform: translateY(40px);
}

.stat-card.show {
  opacity: 1;

  transform: translateY(0);
}

.stat-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: var(--primary);

  transform: scaleX(0);

  transition: 0.35s;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
  font-size: 46px;

  color: var(--primary);

  margin-bottom: 15px;

  font-weight: 700;
}

.stat-card p {
  color: var(--secondary);

  font-size: 17px;

  line-height: 1.6;

  font-weight: 500;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .trust-section {
    padding: 80px 0;
  }

  .trust-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .trust-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 70px 0;
  }

  .trust-content h2 {
    font-size: 36px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .trust-content h2 {
    font-size: 30px;
  }

  .trust-content p {
    font-size: 15px;
  }

  .stat-card {
    padding: 35px 25px;
  }

  .stat-card h3 {
    font-size: 38px;
  }
}
/*=========================================================
    TESTIMONIALS PAGE
    GOOGLE REVIEWS
=========================================================*/

/*=========================================
        GOOGLE REVIEWS
=========================================*/

.google-reviews {
  position: relative;

  padding: 100px 0;

  background: #ffffff;

  overflow: hidden;
}

/*=========================================
        BACKGROUND DECORATION
=========================================*/

.google-reviews::before {
  content: "";

  position: absolute;

  width: 620px;

  height: 620px;

  left: -260px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.google-reviews::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        WRAPPER
=========================================*/

.reviews-wrapper {
  position: relative;

  display: grid;

  grid-template-columns: 340px 1fr;

  gap: 40px;

  align-items: start;

  z-index: 2;
}

/*=========================================
        GOOGLE RATING CARD
=========================================*/

.google-rating-card {
  position: sticky;

  top: 120px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.05);

  border-radius: 28px;

  padding: 40px 35px;

  text-align: center;

  transition: 0.35s ease;

  opacity: 1;

  transform: translateY(40px);
}

.google-rating-card.show {
  opacity: 1;

  transform: translateY(0);
}

.google-rating-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.google-rating-card img {
  width: 220px;

  margin-bottom: 20px;
}

.google-rating-card h3 {
  font-size: 64px;

  color: var(--primary);

  margin-bottom: 15px;

  line-height: 1;
}

.google-rating-card p {
  color: #667085;

  margin-bottom: 30px;
}

/*=========================================
        STARS
=========================================*/

.rating-stars {
  display: flex;

  justify-content: center;

  gap: 6px;

  margin-bottom: 20px;
}

.rating-stars i {
  color: #f6b400;

  font-size: 22px;
}

/*=========================================
        REVIEW LIST
=========================================*/

.review-list {
  display: grid;

  gap: 30px;
}

/*=========================================
        REVIEW CARD
=========================================*/

.review-card {
  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.05);

  border-radius: 24px;

  padding: 35px;

  transition: 0.35s ease;

  opacity: 1;

  transform: translateY(40px);
}

.review-card.show {
  opacity: 1;

  transform: translateY(0);
}

.review-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/*=========================================
        REVIEW HEADER
=========================================*/

.review-header {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 20px;
}

.review-header img {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid rgba(184, 138, 27, 0.15);
}

.review-header h4 {
  color: var(--secondary);

  font-size: 20px;

  margin-bottom: 4px;
}

.review-header span {
  color: #667085;

  font-size: 14px;
}

/*=========================================
        REVIEW STARS
=========================================*/

.review-stars {
  display: flex;

  gap: 5px;

  margin-bottom: 18px;
}

.review-stars i {
  color: #f6b400;

  font-size: 17px;
}

/*=========================================
        REVIEW TEXT
=========================================*/

.review-card p {
  margin: 0;

  color: #667085;

  line-height: 1.9;

  font-size: 16px;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 1100px) {
  .reviews-wrapper {
    grid-template-columns: 1fr;
  }

  .google-rating-card {
    position: relative;

    top: 0;

    max-width: 450px;

    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .google-reviews {
    padding: 70px 0;
  }

  .google-rating-card {
    padding: 35px 30px;
  }

  .review-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .review-card {
    padding: 25px;
  }

  .review-header {
    flex-direction: column;

    text-align: center;
  }

  .review-stars {
    justify-content: center;
  }

  .review-card p {
    text-align: center;
  }

  .google-rating-card h3 {
    font-size: 52px;
  }
}
/*=========================================================
    TESTIMONIALS PAGE
    FAQ SECTION
=========================================================*/

/*=========================================
        FAQ SECTION
=========================================*/

.support-faq {
  position: relative;

  padding: 100px 0;

  background: var(--light);

  overflow: hidden;
}

/*=========================================
        BACKGROUND DECORATION
=========================================*/

.support-faq::before {
  content: "";

  position: absolute;

  width: 550px;

  height: 550px;

  top: -220px;

  left: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.08),
    transparent 72%
  );
}

.support-faq::after {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  right: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================
        FAQ WRAPPER
=========================================*/

.faq-wrapper {
  position: relative;

  max-width: 900px;

  margin: 0 auto;

  z-index: 2;
}

/*=========================================
        FAQ ITEM
=========================================*/

.faq-item {
  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.06);

  border-radius: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  transition: 0.35s ease;

  opacity: 1;

  transform: translateY(30px);
}

.faq-item.show {
  opacity: 1;

  transform: translateY(0);
}

.faq-item.active {
  border-color: rgba(184, 138, 27, 0.25);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/*=========================================
        QUESTION
=========================================*/

.faq-question {
  width: 100%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 26px 30px;

  background: transparent;

  border: none;

  cursor: pointer;

  text-align: left;

  color: var(--secondary);

  font-size: 20px;

  font-weight: 600;

  transition: 0.3s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  width: 42px;

  height: 42px;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  transition: 0.35s;
}

.faq-item.active .faq-question i {
  background: var(--primary);

  color: #ffffff;

  transform: rotate(45deg);
}

/*=========================================
        ANSWER
=========================================*/

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 30px 30px;

  margin: 0;

  color: #667085;

  line-height: 1.9;

  font-size: 16px;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 768px) {
  .support-faq {
    padding: 70px 0;
  }

  .faq-question {
    padding: 22px;

    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
  }
}

@media (max-width: 576px) {
  .faq-question {
    font-size: 17px;
  }

  .faq-question i {
    width: 36px;

    height: 36px;

    font-size: 14px;
  }
}
/*=========================================================
    TESTIMONIALS PAGE
    CALL TO ACTION
=========================================================*/

/*=========================================
        ABOUT CTA
=========================================*/

.about-cta {
  padding: 0 0 60px;

  background: #ffffff;
}

.cta-box {
  position: relative;

  overflow: hidden;

  padding: 90px 80px;

  border-radius: 35px;

  background: linear-gradient(135deg, #fffdf8 0%, #fdf7eb 40%, #f8f1df 100%);

  text-align: center;

  opacity: 0;

  transform: translateY(60px);

  transition: 0.8s ease;
}

.cta-box.show {
  opacity: 1;

  transform: translateY(0);
}

/*=========================================
        BACKGROUND EFFECTS
=========================================*/

.cta-box::before {
  content: "";

  position: absolute;

  left: -250px;

  top: -150px;

  width: 650px;

  height: 650px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(198, 146, 20, 0.18),
    transparent 72%
  );
}

.cta-box::after {
  content: "";

  position: absolute;

  right: -180px;

  bottom: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(198, 146, 20, 0.08);
}

/*=========================================
        CONTENT
=========================================*/

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 760px;

  margin: auto;
}

.cta-content .sub-title {
  display: inline-block;

  margin-bottom: 20px;

  padding: 10px 24px;

  border-radius: 50px;

  background: #c69214;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.cta-content h2 {
  font-size: 56px;

  line-height: 1.15;

  color: #132544;

  margin-bottom: 25px;
}

.cta-content h2 span {
  display: block;

  color: #c69214;

  margin-top: 8px;
}

.cta-content p {
  max-width: 650px;

  margin: 0 auto 40px;

  color: #5f6c80;

  font-size: 18px;

  line-height: 1.9;
}

/*=========================================
        BUTTONS
=========================================*/

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 210px;
}

.cta-buttons .btn-primary {
  background: #c69214;

  color: #ffffff;
}

.cta-buttons .btn-primary:hover {
  background: #b28112;
}

.cta-buttons .btn-outline {
  background: var(--primary-dark);

  border: 2px solid rgba(255, 255, 255, 0.45);

  color: #ffffff;
}

.cta-buttons .btn-outline:hover {
  background: var(--primary-light);

  color: #132544;
}

/*=========================================================
    GLOBAL RESPONSIVE
=========================================================*/

@media (max-width: 991px) {
  .cta-box {
    padding: 70px 40px;
  }

  .cta-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .about-cta {
    padding: 0 0 70px;
  }

  .cta-box {
    padding: 50px 30px;

    border-radius: 25px;
  }

  .cta-content h2 {
    font-size: 34px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 30px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-buttons {
    gap: 15px;
  }
}
