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

.pmseo-faq-item {
    border-bottom: 2px solid #7C81B8;
}

.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;
    line-height: 1.3;
}

.pmseo-faq-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.pmseo-faq-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

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

.pmseo-faq-answer-inner {
    padding: 0 15px 20px;
    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 {
        width: 15px;
        height: 15px;
    }

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