.pmseo-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.pmseo-faq-item {
    border-bottom: 1px solid #62929E;
}

.pmseo-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px 15px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.pmseo-faq-accordion .pmseo-faq-item .pmseo-faq-question h3 {
    margin: 0;
    color: #62929E !important;
    font-weight: normal;
    line-height: 1.3;
}

.pmseo-faq-icon {
    flex-shrink: 0;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1;
    color: #62929E;
    transition: transform 0.2s ease;
}

.pmseo-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.pmseo-faq-item.is-open .pmseo-faq-answer {
    /* max-height is set inline by JS to the measured content height,
       so the animation is smooth regardless of answer length */
}

.pmseo-faq-answer-inner {
    padding: 0 15px 20px;
    font-weight: 500;
    text-align: left;
}

.pmseo-faq-answer-inner p:first-child {
    margin-top: 0;
}

.pmseo-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .pmseo-faq-question {
        padding: 16px 12px;
        gap: 12px;
    }

    .pmseo-faq-icon {
        font-size: 22px;
    }

    .pmseo-faq-answer-inner {
        padding: 0 12px 16px;
    }
}
