.faq-page {
    padding: 30px 0 60px;
}

.faq-header {
    margin-bottom: 18px;
}

    .faq-header h2 {
        color: #1a3560;
        font-weight: 700;
        margin: 0;
    }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e9f2;
    border-left: 4px solid #1ab394;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(26,53,96,0.05);
    overflow: hidden;
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 14px 20px;
    font-weight: 600;
    color: #1a3560;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

    .faq-question::before {
        content: "\f054";
        font-family: FontAwesome, sans-serif;
        font-size: 0.8em;
        color: #1253ca;
        flex: 0 0 auto;
        transition: transform 0.2s ease;
    }

.faq-item[open] > .faq-question::before {
    transform: rotate(90deg);
}

.faq-question:focus,
.faq-question:focus-visible {
    outline: none;
    background: #f5f7fb;
}

.faq-answer {
    padding: 0 20px 16px 50px;
    color: #444;
    line-height: 1.7;
}
