/* FAQ Section Styles (from your provided CSS) */
      .faq-section {
        background-color: rgba(0, 0, 0, 0.562);
        color: var(--text-color-light);
        padding: 80px 20px;
        max-width: 1440px; /* Consistent max-width */
        margin: 0 auto; /* Center the section */
        box-sizing: border-box;
      }

      .faq-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }
      .faq-tag-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 40px;
      }
      .faq-tag { /* This tag is already defined above, but repeated here, consolidate */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: var(--font-size-sm);
        font-weight: var(--font-weight-medium);
        background-color: var(--bg-dark-transparent);
        padding: 10px 20px;
        border-radius: 25px;
        height: 40px;
        border: 1px solid var(--border-color-light);
        color: var(--text-color-light);
        white-space: nowrap;
      }
      .faq-content {
        display: flex;
        flex-wrap: wrap; /* Allows wrapping on smaller screens */
        justify-content: space-between;
        width: 100%;
        gap: 40px; /* Gap between left and right columns */
      }
      .faq-left {
        flex: 1;
        min-width: 300px; /* Ensure it doesn't get too small */
        max-width: 45%; /* Adjust width for desktop */
        text-align: left;
      }
      .faq-heading {
        font-size: 3.5em; /* Consider var(--font-size-xl) */
        font-weight: var(--font-weight-bold);
        line-height: var(--line-height-tight);
        margin-bottom: 20px;
        color: var(--text-color-light);
      }
      .heading-accent {
        color: rgb(0,85,255);
      }
      .faq-subheading {
        font-size: 1.1em; /* Consider var(--font-size-md) */
        color: var(--text-color-medium);
        line-height: var(--line-height-normal);
      }
      .faq-right {
        flex: 2;
        min-width: 300px;
        max-width: 50%; /* Adjust width for desktop */
        display: flex;
        flex-direction: column;
        gap: 15px; /* Gap between FAQ items */
      }
      .faq-item {
        background-color: var(--card-bg); /* Use card background variable */
        border: 1px solid var(--border-color-dark);
        border-radius: var(--border-radius-md);
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background-color var(--transition-speed-fast) ease, border-color var(--transition-speed-fast) ease;
      }
      .faq-item:hover {
        background-color: #1a1a1a; /* Slightly darker on hover */
        border-color: rgb(0,85,255);
      }
      .faq-question {
        font-size: 1.1em; /* Consider var(--font-size-md) */
        font-weight: var(--font-weight-medium);
        color: var(--text-color-light);
        margin: 0;
      }
      .faq-icon {
        font-size: 1.5em;
        color: var(--text-color-medium);
        transition: transform var(--transition-speed-fast) ease;
      }
      /* Add active state for FAQ items if you implement expand/collapse */
      .faq-item.active .faq-icon {
        transform: rotate(45deg);
      }
      /* Example of content that would be toggled */
      .faq-answer {
        font-size: 0.95em;
        color: var(--text-color-medium);
        margin-top: 10px;
        display: none; /* Hidden by default */
      }
      .faq-item.active .faq-answer {
        display: block;
      }
/* FAQ Section Responsive */
      @media (max-width: 1024px) {
          .faq-section {
              padding: 60px 15px;
          }
          .faq-left {
              max-width: 100%; /* Allow left column to take full width */
              margin-bottom: 40px; /* Add space below if it stacks */
              text-align: center;
          }
          .faq-heading {
              font-size: 2.8em;
          }
          .faq-subheading {
              font-size: 1em;
          }
          .faq-right {
              max-width: 100%; /* Allow right column to take full width */
          }
          .faq-tag-wrapper {
            margin-bottom: 25px;
          }
      }

      @media (max-width: 768px) {
          .faq-section {
              padding: 40px 10px;
          }
          .faq-content {
              gap: 30px;
          }
          .faq-heading {
              font-size: 2.2em;
          }
          .faq-question {
              font-size: 1em;
          }
          .faq-item {
              padding: 15px;
          }
          .faq-item .faq-icon {
              font-size: 1.2em;
          }
      }

      /* Team Section Responsive */
      @media (min-width: 1025px) {
          .team-grid {
              grid-template-columns: repeat(3, 1fr);
          }
      }

      @media (max-width: 1024px) {
          .team-title {
              font-size: 3em;
          }
          .team-grid {
              grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          }
      }

      @media (max-width: 768px) {
          .team-section {
              padding: 80px 15px;
              border-radius: 30px;
          }
          .team-title {
              font-size: 2.5em;
              line-height: 1.3;
          }
          .team-description {
              font-size: 1em;
          }
          .book-call-button {
              padding: 12px 25px;
              font-size: 1em;
          }
          .team-grid {
              grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
              gap: 20px;
          }
          .member-photo {
              height: 250px;
          }
          .member-name {
              font-size: 1.2em;
          }
          .member-role {
              font-size: 0.9em;
          }
          .member-icon-box {
              width: 30px;
              height: 30px;
              bottom: 15px;
              right: 15px;
          }
      }

      @media (max-width: 480px) {
          .team-section {
              padding: 60px 10px;
              border-radius: 20px;
          }
          .team-tag {
              font-size: 0.8em;
              padding: 6px 12px;
              margin-bottom: 20px;
          }
          .team-title {
              font-size: 2em;
          }
          .team-description {
              font-size: 0.9em;
          }
          .book-call-button {
              font-size: 0.9em;
              padding: 10px 20px;
          }
          .team-grid {
              grid-template-columns: 1fr;
              gap: 15px;
          }
          .member-photo {
              height: 200px;
          }
          .member-name {
              font-size: 1.1em;
          }
          .member-role {
              font-size: 0.85em;
          }
      }
      
.fade-in-element{
opacity:0;
transform:translateY(20px);
transition: opacity 0.8s ease-out,transform 0.8s ease-out;
}
.fade-in-element.is-visible{
opacity: 1;
transform: translateY(0);
}