
    /* FAQ Page Styles */
    .faq-container {
      margin-top: 80px;
      padding: 80px 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-title {
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 60px;
      text-align: center;
      color: #000000;
    }

    .faq-category {
      margin-bottom: 50px;
    }

    .category-title {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 25px;
      color: #000000;
      padding-bottom: 10px;
      border-bottom: 1px solid #e0e0e0;
    }

    .faq-item {
      margin-bottom: 25px;
      border-bottom: 1px solid #f0f0f0;
      padding-bottom: 20px;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.5px;
      color: #000000;
      margin-bottom: 10px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: #666666;
    }

    .faq-question::after {
      content: '+';
      font-size: 18px;
      font-weight: 300;
      transition: transform 0.3s ease;
    }

    .faq-question.active::after {
      content: '−';
      transform: rotate(0deg);
    }

    .faq-answer {
      font-size: 13px;
      line-height: 2;
      letter-spacing: 0.5px;
      color: #333333;
      font-weight: 300;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding-left: 0;
    }

    .faq-answer.active {
      max-height: 500px;
      padding-top: 10px;
    }

    .contact-box {
      background-color: #fafafa;
      border: 1px solid #e0e0e0;
      padding: 30px;
      margin-top: 60px;
      text-align: center;
    }

    .contact-box p {
      font-size: 13px;
      line-height: 2;
      letter-spacing: 0.5px;
      margin-bottom: 20px;
    }

    .contact-link {
      display: inline-block;
      padding: 12px 30px;
      border: 1px solid #000000;
      color: #000000;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      background-color: transparent;
      font-weight: 300;
    }

    .contact-link:hover {
      background-color: #000000;
      color: #ffffff;
    }