.faq-page {
    max-width: 980px;
    margin: 0 auto;
    margin-top: 80px;
    padding: 28px 16px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #111;
}

.faq-hero h1 {
    font-size: 28px;
    margin: 0 0 10px;
}

.faq-sub {
    margin: 0 0 22px;
    color: #444;
}

.faq-section-title {
    margin: 34px 0 14px;
    font-size: 22px;
    font-weight: 700;
    padding-top: 18px;
    border-top: 3px solid #2e8b57;
    /* green line similar to your page */
}

.faq-accordion {
    display: block;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 10px 0;
    background: #fff;
    overflow: hidden;
}

.faq-q {
    cursor: pointer;
    padding: 14px 14px;
    font-weight: 600;
    list-style: none;
    position: relative;
    background: #fafafa;
}

.faq-item[open] .faq-q {
    background: #fff;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q:after {
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    color: #444;
}

.faq-item[open] .faq-q:after {
    content: "–";
}

.faq-a {
    padding: 12px 14px 16px;
    border-top: 1px solid #eee;
}

.faq-a p {
    margin: 0 0 10px;
}

.faq-a ul {
    margin: 8px 0 0 18px;
}

.faq-link {
    color: #1a5fb4;
    text-decoration: underline;
}

.faq-table-wrap {
    overflow-x: auto;
    margin-top: 12px;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 740px;
}

.faq-table th,
.faq-table td {
    border: 1px solid #ddd;
    padding: 10px;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
}

.faq-table th {
    background: #f3f5f7;
}