
.faq-wrapper {
    max-width: 1280px;
    margin: 30px auto;           /* 原40px → 30px */
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 28px 24px;          /* 原48px 24px → 28px 24px */
    box-sizing: border-box;
}
.faq-container {
    background: transparent;
    padding: 0;
}
.faq-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;             /* 原35px → 30px */
    color: #222222;
    text-align: center;
    margin-bottom: 24px;         /* 原32px → 24px */
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;                   /* 原16px → 12px */
}
.faq-item {
    border-radius: 14px;         /* 原16px → 14px */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.faq-question {
    background: #ffffff;
    padding: 12px 18px;          /* 原16px 20px → 12px 18px */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;                   /* 原12px → 10px */
    transition: background 0.2s;
    font-weight: 600;
    font-size: 15px;             /* 原16px → 15px */
    color: #222222;
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-icon {
    color: #0047AB;
    font-size: 18px;             /* 原20px → 18px */
    font-weight: 700;
    transition: transform 0.2s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.2s;
    background: transparent;
    padding: 0 20px;              /* 原0 24px → 0 20px */
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 12px 20px 16px 20px; /* 原16px 24px 20px → 12px 20px 16px */
}
.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;             /* 原15px → 14px */
    line-height: 1.55;
    color: #555555;
    margin: 0;
}
.faq-link {
    color: #0047AB;
    text-decoration: none;
    font-weight: 600;
}
.faq-link:hover {
    text-decoration: underline;
}
.highlight {
    color: #0047AB;
    font-weight: 600;
}
@media (max-width: 768px) {
    .faq-wrapper {
        padding: 24px 20px;
        margin: 24px auto;
    }
    .faq-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .faq-question {
        padding: 10px 16px;
        font-size: 14px;
    }
    .faq-icon {
        font-size: 16px;
    }
    .faq-item.active .faq-answer {
        padding: 10px 16px 14px 16px;
    }
    .faq-answer p {
        font-size: 13px;
    }
}
