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

  .faq-module {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #ffffff;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }

  .faq-header p {
    font-size: 1rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .faq-item {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e5e9f0;
    overflow: hidden;
    transition: all 0.2s ease;
  }

  .faq-item:hover {
    border-color: #c5d5e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 1.5rem;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.2s;
    gap: 1rem;
  }

  .faq-question:hover {
    background: #f5f5f5;
  }

  .question-text {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    color: #000000;
    flex: 1;
  }

  @media (min-width: 768px) {
    .question-text {
      font-size: 1.05rem;
    }
  }

  .faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: #000000;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #ffffff;
    border-top: 0px solid #eef2f7;
  }

  .faq-answer.active {
    max-height: 600px;
    transition: max-height 0.45s ease-in;
    border-top-width: 1px;
  }

  .answer-inner {
    padding: 0.25rem 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #000000;
  }

  @media (min-width: 768px) {
    .answer-inner {
      font-size: 1rem;
      padding: 0.25rem 1.8rem 1.6rem 1.8rem;
    }
  }

  .answer-inner p {
    margin-bottom: 0.75rem;
    color: #000000;
  }

  .answer-inner ul, .answer-inner ol {
    margin: 0.5rem 0 0.75rem 1.25rem;
    color: #000000;
  }

  .answer-inner li {
    color: #000000;
  }

  .small-note {
    font-size: 0.85rem;
    color: #000000;
    margin-top: 0.75rem;
    border-left: 3px solid #d0d0d0;
    padding-left: 0.75rem;
  }
