    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: #666666;
      background-color: #ffffff;
      line-height: 1.6;
    }

    .faq-hero {
      text-align: center;
      padding: 60px 20px 40px;
    }

    .faq-hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 42px;
      font-weight: 500;
      color: #003D4B;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .faq-breadcrumb {
      font-size: 14px;
      color: #999;
    }

    .faq-breadcrumb a {
      color: #999;
      text-decoration: none;
      transition: color 0.2s;
    }

    .faq-breadcrumb a:hover {
      color: #003D4B;
    }

    .faq-breadcrumb span {
      color: #003D4B;
      font-weight: 500;
    }

    .faq-intro {
      max-width: 800px;
      margin: 0 auto 50px;
      padding: 0 20px;
      text-align: center;
      font-size: 15px;
      line-height: 1.8;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto 80px;
      padding: 0 20px;
    }

    .accordion-item {
      border-bottom: 1px solid #e0e0e0;
    }

    .accordion-item:first-child {
      border-top: 1px solid #e0e0e0;
    }

    .accordion-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 22px 16px;
      background: none;
      border: none;
      cursor: pointer;
      text-decoration: none;
      color: #003D4B;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 500;
      text-align: left;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

 

    .accordion-link:hover {
      background-color: #f4f8f9;
    }

    .accordion-link:hover .accordion-arrow {
      transform: translateX(4px);
    }

    .accordion-label {
      display: flex;
      align-items: center;
      gap: 14px;
      flex: 1;
    }

    .accordion-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 50%;
      background-color: #003D4B;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .accordion-icon svg {
      width: 20px;
      height: 20px;
      fill: #ffffff;
    }

    .accordion-arrow {
      display: flex;
      align-items: center;
      transition: transform 0.25s ease;
    }

    .accordion-arrow svg {
      width: 20px;
      height: 20px;
      fill: #003D4B;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .faq-hero h1 {
        font-size: 30px;
      }

      .accordion-link {
        padding: 18px 12px;
        font-size: 14px;
      }

      .accordion-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
      }

      .accordion-icon svg {
        width: 17px;
        height: 17px;
      }
    }