    .faq-wrapper {
        max-width: 1000px;
        margin: 0 auto;		
		padding: 3rem 1rem;
		margin-top: calc(90px + 86px);
      }

      .faq-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .faq-header h2 {
        font-size: 40px;
        color: #127c7c;
        margin-bottom: 15px;
        font-weight: 700;
      }

      .faq-header p {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
      }

      .faq-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
      }

      .faq-box {
        background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
        border-left: 5px solid #127c7c;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
      }

      .faq-box:hover {
        box-shadow: 0 5px 25px rgba(18, 124, 124, 0.15);
        transform: translateX(5px);
      }

      .faq-box::before {
        content: "Q";
        position: absolute;
        left: 8px;
        top: 20px;
        width: 45px;
        height: 45px;
        background: #127c7c;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: bold;
        box-shadow: 0 3px 10px rgba(18, 124, 124, 0.3);
      }

      .faq-content {
        padding-left: 50px;
      }

      .faq-question {
        font-size: 20px;
        color: #1a1a1a;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1.4;
      }

      .faq-answer {
        font-size: 16px;
        color: #555;
        line-height: 1.7;
      }

      .faq-answer strong {
        color: #127c7c;
        font-weight: 600;
      }

      /* Divider style */
      .faq-divider {
        text-align: center;
        margin: 50px 0;
        position: relative;
      }

      .faq-divider::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
        background: linear-gradient(
          to right,
          transparent,
          #127c7c,
          transparent
        );
      }

      .faq-divider span {
        background: #ffffff;
        padding: 0 20px;
        color: #127c7c;
        font-weight: 600;
        position: relative;
        z-index: 1;
      }

      .faq-divider span a {
        color: #127c7c;
        font-weight: 600;
		text-decoration: none;
      }

      @media (max-width: 768px) {
        .faq-header h2 {
          font-size: 32px;
        }

        .faq-box {
          padding: 25px 20px;
        }

        .faq-content {
          padding-left: 40px;
        }

        .faq-question {
          font-size: 18px;
        }

        .faq-answer {
          font-size: 15px;
        }
      }

	  @media (max-width: 850px) {
	    .faq-wrapper {
		  margin-top: calc(90px);
	    }
      }

	  @media (max-width: 576px) {
	   .faq-wrapper {
		 margin-top: calc(90px);
	   }
	  }


      /* Alternative number style for variety */
      .faq-box:nth-child(1)::before {
        content: "1";
      }
      .faq-box:nth-child(2)::before {
        content: "2";
      }
      .faq-box:nth-child(3)::before {
        content: "3";
      }


	/* Heading animation */
	.faq-header {
	  opacity: 0;
	  transform: translateY(-30px) scale(0.95);
	}
	.faq-header.reveal-heading {
	  opacity: 1;
	  transform: translateY(0) scale(1);
	  transition: opacity 0.9s ease, transform 0.9s ease;
	}

	/* FAQ cards */
	.faq-box {
	  opacity: 0;
	  transform: translateY(40px);
	}
	.faq-box.reveal {
	  opacity: 1;
	  transform: translateY(0);
	  transition: opacity 0.8s ease, transform 0.8s ease;
	}