    /* =========================================================
       CHURCH FAQ SECTION
    ========================================================= */

    .church-faq-section {
      --faq-primary: #173d72;
      --faq-secondary: #275e9d;
      --faq-gold: #d9a52b;
      --faq-light-gold: #f7df9b;
      --faq-cream: #fffaf0;
      --faq-white: #ffffff;
      --faq-text: #25364d;
      --faq-muted: #627086;

      position: relative;
      overflow: hidden;
      padding: 100px 0;
      background:
        radial-gradient(
          circle at 10% 15%,
          rgba(217, 165, 43, 0.16),
          transparent 26%
        ),
        radial-gradient(
          circle at 90% 80%,
          rgba(39, 94, 157, 0.15),
          transparent 30%
        ),
        linear-gradient(135deg, #fffdf7 0%, #f3f8ff 55%, #fff8e8 100%);
      font-family: "Noto Sans Tamil", sans-serif;
      isolation: isolate;
    }

    .church-faq-section *,
    .church-faq-section *::before,
    .church-faq-section *::after {
      box-sizing: border-box;
    }

    /* Decorative background shapes */

    .faq-decoration {
      position: absolute;
      pointer-events: none;
      z-index: -1;
    }

    .faq-circle-one {
      width: 300px;
      height: 300px;
      top: -130px;
      left: -90px;
      border-radius: 50%;
      border: 45px solid rgba(217, 165, 43, 0.08);
      animation: faqFloatOne 8s ease-in-out infinite;
    }

    .faq-circle-two {
      width: 360px;
      height: 360px;
      right: -180px;
      bottom: -170px;
      border-radius: 50%;
      border: 55px solid rgba(23, 61, 114, 0.07);
      animation: faqFloatTwo 10s ease-in-out infinite;
    }

    .faq-glow-one {
      width: 180px;
      height: 180px;
      top: 32%;
      right: 8%;
      border-radius: 50%;
      background: rgba(217, 165, 43, 0.13);
      filter: blur(45px);
      animation: faqGlow 6s ease-in-out infinite alternate;
    }

    .faq-glow-two {
      width: 220px;
      height: 220px;
      bottom: 12%;
      left: 5%;
      border-radius: 50%;
      background: rgba(39, 94, 157, 0.12);
      filter: blur(55px);
      animation: faqGlow 7s ease-in-out infinite alternate-reverse;
    }

    .faq-dot-pattern {
      position: absolute;
      top: 90px;
      right: 5%;
      width: 130px;
      height: 130px;
      opacity: 0.28;
      z-index: -1;
      background-image: radial-gradient(
        rgba(23, 61, 114, 0.6) 1.5px,
        transparent 1.5px
      );
      background-size: 15px 15px;
    }

    /* Section heading */

    .faq-heading-wrap {
      max-width: 850px;
      margin: 0 auto 50px;
      text-align: center;
      position: relative;
    }

    .faq-small-label {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 17px;
      margin-bottom: 18px;
      border: 1px solid rgba(217, 165, 43, 0.45);
      border-radius: 50px;
      color: var(--faq-primary);
      background: rgba(255, 255, 255, 0.74);
      box-shadow:
        0 8px 25px rgba(30, 55, 90, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .faq-small-label i {
      color: var(--faq-gold);
    }

    .faq-main-title {
      margin-bottom: 18px;
      color: var(--faq-primary);
      font-family: "Archivo Black", sans-serif;
      font-size: clamp(2.1rem, 5vw, 4.2rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .faq-main-title span {
      position: relative;
      display: inline-block;
      color: var(--faq-gold);
    }

    .faq-main-title span::after {
      content: "";
      position: absolute;
      left: 4%;
      right: 4%;
      bottom: -7px;
      height: 6px;
      border-radius: 50px;
      background: linear-gradient(
        90deg,
        transparent,
        var(--faq-gold),
        transparent
      );
      opacity: 0.75;
    }

    .faq-subtitle {
      max-width: 720px;
      margin: 0 auto;
      color: var(--faq-muted);
      font-size: 1rem;
      line-height: 1.9;
    }

    /* Intro card */

    .faq-intro-card {
      position: relative;
      height: 100%;
      min-height: 540px;
      overflow: hidden;
      padding: 38px;
      border: 1px solid rgba(255, 255, 255, 0.75);
      border-radius: 28px;
      color: var(--faq-white);
      background:
        linear-gradient(
          145deg,
          rgba(18, 51, 97, 0.98),
          rgba(36, 89, 151, 0.94)
        );
      box-shadow:
        0 25px 60px rgba(14, 46, 87, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
      isolation: isolate;
    }

    .faq-intro-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(
          circle at 85% 15%,
          rgba(247, 223, 155, 0.35),
          transparent 28%
        ),
        radial-gradient(
          circle at 15% 95%,
          rgba(255, 255, 255, 0.12),
          transparent 30%
        );
    }

    .faq-intro-card::after {
      content: "";
      position: absolute;
      width: 230px;
      height: 230px;
      right: -90px;
      bottom: -80px;
      z-index: -1;
      border: 35px solid rgba(255, 255, 255, 0.07);
      border-radius: 50%;
      animation: faqRotate 16s linear infinite;
    }

    .faq-intro-icon {
      display: grid;
      place-items: center;
      width: 82px;
      height: 82px;
      margin-bottom: 26px;
      border: 1px solid rgba(255, 255, 255, 0.23);
      border-radius: 24px;
      color: #fff1bb;
      background: rgba(255, 255, 255, 0.1);
      box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      font-size: 2rem;
      transform: rotate(-4deg);
    }

    .faq-intro-card h3 {
      margin-bottom: 18px;
      font-family: "Archivo Black", sans-serif;
      font-size: clamp(1.65rem, 3vw, 2.35rem);
      line-height: 1.35;
    }

    .faq-intro-card > p {
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.81);
      font-size: 0.96rem;
      line-height: 1.9;
    }

    .faq-feature-list {
      display: grid;
      gap: 16px;
      margin: 0 0 32px;
      padding: 0;
      list-style: none;
    }

    .faq-feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      padding: 14px 15px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      transition:
        transform 0.3s ease,
        background 0.3s ease;
    }

    .faq-feature-list li:hover {
      transform: translateX(7px);
      background: rgba(255, 255, 255, 0.13);
    }

    .faq-feature-list i {
      margin-top: 3px;
      color: #ffe49a;
      font-size: 1rem;
    }

    .faq-feature-list span {
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.91rem;
      line-height: 1.65;
    }

    .faq-contact-box {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 17px;
      border: 1px solid rgba(247, 223, 155, 0.32);
      border-radius: 19px;
      background: linear-gradient(
        135deg,
        rgba(217, 165, 43, 0.22),
        rgba(255, 255, 255, 0.07)
      );
    }

    .faq-contact-icon {
      display: grid;
      place-items: center;
      flex: 0 0 48px;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      color: var(--faq-primary);
      background: linear-gradient(145deg, #fff4c8, #e9b941);
      box-shadow: 0 10px 25px rgba(217, 165, 43, 0.25);
    }

    .faq-contact-box small {
      display: block;
      margin-bottom: 2px;
      color: rgba(255, 255, 255, 0.65);
    }

    .faq-contact-box strong {
      display: block;
      color: var(--faq-white);
      font-size: 0.95rem;
    }

    /* FAQ accordion */

    .faq-accordion-wrap {
      height: 100%;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, 0.85);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.62);
      box-shadow:
        0 22px 55px rgba(32, 65, 105, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(16px);
    }

    .church-faq-accordion {
      --bs-accordion-border-width: 0;
      --bs-accordion-border-radius: 20px;
      --bs-accordion-btn-focus-box-shadow: none;
    }

    .church-faq-accordion .accordion-item {
      position: relative;
      overflow: hidden;
      margin-bottom: 14px;
      border: 1px solid rgba(23, 61, 114, 0.1);
      border-radius: 19px !important;
      background: rgba(255, 255, 255, 0.87);
      box-shadow:
        0 10px 25px rgba(24, 58, 99, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
      transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    }

    .church-faq-accordion .accordion-item:last-child {
      margin-bottom: 0;
    }

    .church-faq-accordion .accordion-item:hover {
      transform: translateY(-3px);
      border-color: rgba(217, 165, 43, 0.33);
      box-shadow:
        0 17px 36px rgba(24, 58, 99, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .church-faq-accordion .accordion-button {
      gap: 16px;
      padding: 21px 22px;
      color: var(--faq-primary);
      background: transparent;
      font-weight: 700;
      line-height: 1.55;
    }

    .church-faq-accordion .accordion-button:not(.collapsed) {
      color: var(--faq-primary);
      background: linear-gradient(
        110deg,
        rgba(255, 249, 229, 0.95),
        rgba(239, 247, 255, 0.95)
      );
      box-shadow: none;
    }

    .church-faq-accordion .accordion-button::after {
      width: 36px;
      height: 36px;
      margin-left: auto;
      border-radius: 11px;
      background-color: rgba(23, 61, 114, 0.08);
      background-position: center;
      background-size: 16px;
      transition:
        transform 0.35s ease,
        background-color 0.35s ease;
    }

    .church-faq-accordion .accordion-button:not(.collapsed)::after {
      background-color: rgba(217, 165, 43, 0.17);
    }

    .faq-question-icon {
      display: grid;
      place-items: center;
      flex: 0 0 45px;
      width: 45px;
      height: 45px;
      border-radius: 14px;
      color: var(--faq-gold);
      background: linear-gradient(
        145deg,
        rgba(255, 246, 212, 1),
        rgba(255, 255, 255, 1)
      );
      box-shadow:
        0 8px 18px rgba(217, 165, 43, 0.12),
        inset 0 1px 0 #ffffff;
      font-size: 1rem;
    }

    .faq-question-text {
      flex: 1;
    }

    .church-faq-accordion .accordion-body {
      padding: 6px 23px 24px 84px;
      color: var(--faq-text);
      font-size: 0.94rem;
      line-height: 1.9;
    }

    .faq-answer-highlight {
      margin-top: 13px;
      padding: 13px 15px;
      border-left: 4px solid var(--faq-gold);
      border-radius: 0 12px 12px 0;
      color: #4a5668;
      background: rgba(217, 165, 43, 0.08);
    }

    /* Bottom call-to-action */

    .faq-bottom-cta {
      position: relative;
      overflow: hidden;
      margin-top: 45px;
      padding: 27px 30px;
      border: 1px solid rgba(217, 165, 43, 0.28);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.76);
      box-shadow: 0 18px 42px rgba(29, 62, 103, 0.1);
      backdrop-filter: blur(12px);
    }

    .faq-bottom-cta::before {
      content: "";
      position: absolute;
      width: 130px;
      height: 130px;
      top: -70px;
      right: 14%;
      border-radius: 50%;
      background: rgba(217, 165, 43, 0.12);
      filter: blur(2px);
    }

    .faq-cta-content {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .faq-cta-icon {
      display: grid;
      place-items: center;
      flex: 0 0 62px;
      width: 62px;
      height: 62px;
      border-radius: 19px;
      color: #ffffff;
      background: linear-gradient(
        145deg,
        var(--faq-primary),
        var(--faq-secondary)
      );
      box-shadow: 0 13px 28px rgba(23, 61, 114, 0.24);
      font-size: 1.35rem;
    }

    .faq-cta-content h4 {
      margin-bottom: 6px;
      color: var(--faq-primary);
      font-family: "Archivo Black", sans-serif;
      font-size: 1.2rem;
    }

    .faq-cta-content p {
      margin: 0;
      color: var(--faq-muted);
      line-height: 1.7;
    }

    .faq-contact-btn {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-width: 175px;
      padding: 14px 23px;
      overflow: hidden;
      border: 0;
      border-radius: 15px;
      color: var(--faq-primary);
      background: linear-gradient(135deg, #f9dd8c, #d9a52b);
      box-shadow:
        0 14px 30px rgba(217, 165, 43, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
      font-weight: 800;
      text-decoration: none;
      transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    }

    .faq-contact-btn::before {
      content: "";
      position: absolute;
      top: -60%;
      left: -70%;
      width: 50%;
      height: 220%;
      background: rgba(255, 255, 255, 0.55);
      transform: rotate(28deg);
      transition: left 0.6s ease;
    }

    .faq-contact-btn:hover {
      color: var(--faq-primary);
      transform: translateY(-3px);
      box-shadow: 0 18px 36px rgba(217, 165, 43, 0.35);
    }

    .faq-contact-btn:hover::before {
      left: 125%;
    }

    /* Animations */

    @keyframes faqFloatOne {
      0%,
      100% {
        transform: translate(0, 0);
      }

      50% {
        transform: translate(18px, 20px);
      }
    }

    @keyframes faqFloatTwo {
      0%,
      100% {
        transform: translate(0, 0);
      }

      50% {
        transform: translate(-22px, -17px);
      }
    }

    @keyframes faqGlow {
      from {
        transform: scale(0.9);
        opacity: 0.55;
      }

      to {
        transform: scale(1.15);
        opacity: 0.9;
      }
    }

    @keyframes faqRotate {
      to {
        transform: rotate(360deg);
      }
    }

    /* Responsive */

    @media (max-width: 991.98px) {
      .church-faq-section {
        padding: 80px 0;
      }

      .faq-intro-card {
        min-height: auto;
      }

      .faq-accordion-wrap {
        margin-top: 5px;
      }

      .faq-bottom-cta {
        text-align: center;
      }

      .faq-cta-content {
        justify-content: center;
        margin-bottom: 22px;
        text-align: left;
      }

      .faq-contact-btn {
        width: 100%;
      }
    }

    @media (max-width: 575.98px) {
      .church-faq-section {
        padding: 65px 0;
      }

      .faq-heading-wrap {
        margin-bottom: 35px;
      }

      .faq-main-title {
        font-size: 2.15rem;
      }

      .faq-subtitle {
        font-size: 0.93rem;
      }

      .faq-intro-card {
        padding: 27px 22px;
        border-radius: 22px;
      }

      .faq-intro-icon {
        width: 68px;
        height: 68px;
        border-radius: 20px;
        font-size: 1.6rem;
      }

      .faq-accordion-wrap {
        padding: 8px;
        border-radius: 22px;
      }

      .church-faq-accordion .accordion-button {
        gap: 11px;
        padding: 17px 15px;
        font-size: 0.9rem;
      }

      .faq-question-icon {
        flex-basis: 39px;
        width: 39px;
        height: 39px;
        border-radius: 12px;
      }

      .church-faq-accordion .accordion-button::after {
        width: 30px;
        height: 30px;
        background-size: 14px;
      }

      .church-faq-accordion .accordion-body {
        padding: 4px 17px 21px;
        font-size: 0.9rem;
      }

      .faq-bottom-cta {
        padding: 24px 20px;
      }

      .faq-cta-content {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .church-faq-section *,
      .church-faq-section *::before,
      .church-faq-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }