/* Shared FAQ accordion — passport & visa service pages */

section.faq.container {
    background-color: transparent;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
    box-sizing: border-box;
}

section.faq.container .s_h {
    text-align: center;
    margin-bottom: 32px;
}

section.faq.container h2.s_t {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b5f;
    margin-bottom: 12px;
    letter-spacing: normal;
    text-transform: none;
}

section.faq.container p.s_lead {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #5a6578;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

section.faq.container .faq-list details {
    border: 1px solid #e4eaf5;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(9, 68, 244, 0.04);
}

section.faq.container .faq-list summary {
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a2b5f;
    list-style: none;
    padding: 16px 44px 16px 20px;
    position: relative;
    transition: background 0.2s;
}

section.faq.container .faq-list summary:hover {
    background: #f8faff;
}

section.faq.container .faq-list summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: #0944f4;
    line-height: 1;
}

section.faq.container .faq-list details[open] summary::after {
    content: "−";
}

section.faq.container .faq-list summary::-webkit-details-marker {
    display: none;
}

section.faq.container .faq-list .answer {
    max-height: none;
    overflow: visible;
    padding: 0 20px 16px;
    color: #4a5568;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    transition: none;
}

section.faq.container .faq-list details[open] .answer {
    max-height: none;
    padding: 0 20px 16px;
}

section.faq.container .faq-list .answer p {
    margin: 0 0 10px;
}

section.faq.container .faq-list .answer ul,
section.faq.container .faq-list .answer ol {
    margin: 8px 0 0;
    padding-left: 20px;
}

section.faq.container .faq-list .answer li {
    margin-bottom: 6px;
}

@media only screen and (max-width: 769px) {
    section.faq.container {
        margin-bottom: 48px;
        padding: 0 16px;
    }

    section.faq.container h2.s_t {
        font-size: 1.25rem;
    }

    section.faq.container p.s_lead {
        font-size: 0.95rem;
    }

    section.faq.container .faq-list summary {
        font-size: 14px;
        padding: 14px 40px 14px 16px;
    }
}
