.microscope-faq-section {
    background: #f6f7f9;
    padding: 70px 20px 76px;
}

.microscope-faq-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.microscope-faq-heading {
    margin-bottom: 38px;
    text-align: center;
}

.microscope-faq-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #142d79;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.microscope-faq-heading h2 {
    margin: 0;
    color: #142d79;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
}

.microscope-faq-heading p {
    margin: 13px 0 0;
    color: #3e3e3e;
    font-size: 15px;
    line-height: 1.6;
}

.microscope-faq-list {
    display: grid;
    gap: 12px;
}

.microscope-faq-item {
    border: 1px solid #d8dce5;
    border-radius: 2px;
    background: #fff;
}

.microscope-faq-item summary {
    position: relative;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    color: #142d79;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
}

.microscope-faq-item summary::-webkit-details-marker {
    display: none;
}

.microscope-faq-item summary:focus-visible {
    outline: 3px solid rgba(20, 45, 121, 0.25);
    outline-offset: 2px;
}

.microscope-faq-icon {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #142d79;
}

.microscope-faq-icon::before,
.microscope-faq-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #fff;
    content: '';
    transform: translate(-50%, -50%);
}

.microscope-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease;
}

.microscope-faq-item[open] .microscope-faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.microscope-faq-answer {
    padding: 0 68px 22px 22px;
}

.microscope-faq-answer p {
    margin: 0;
    color: #444;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .microscope-faq-section {
        padding: 52px 16px 58px;
    }

    .microscope-faq-heading {
        margin-bottom: 28px;
    }

    .microscope-faq-heading p {
        font-size: 14px;
    }

    .microscope-faq-item summary {
        min-height: 64px;
        gap: 16px;
        padding: 16px;
        font-size: 15px;
    }

    .microscope-faq-answer {
        padding: 0 58px 18px 16px;
    }
}
