/* Shared SEO FAQ accordion styles */
.seo-faq {
    margin-top: 45px;
}

.seo-faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 28px;
}

.seo-faq-list {
    border-top: 1px solid #d6d6d6;
}

.seo-faq-item {
    border-bottom: 1px solid #d6d6d6;
}

.seo-faq-question {
    background: none;
    border: 0;
    width: 100%;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    color: #222;
    cursor: pointer;
}

.seo-faq-number {
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ececec;
    color: #ff7900;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.seo-faq-question-text {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.seo-faq-chevron {
    color: #ff7900;
    transition: transform 0.25s ease;
    width: 22px;
    min-width: 22px;
    margin-right: 8px;
}

.seo-faq-question[aria-expanded="true"] .seo-faq-chevron {
    transform: rotate(180deg);
}

.seo-faq-question[aria-expanded="true"] .seo-faq-question-text {
    color: #ff7900;
}

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

.seo-faq-answer-inner {
    padding: 0 52px 24px 66px;
    font-size: 30px;
    line-height: 1.45;
    color: #333;
}

.seo-faq-answer-inner p {
    font-size: 1.1rem;
}

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

@media (max-width: 1024px) {
    .seo-faq-title {
        font-size: 1.5rem;
    }

    .seo-faq-question-text {
        font-size: 1.2rem;
    }

    .seo-faq-answer-inner {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .seo-faq {
        margin-top: 30px;
    }

    .seo-faq-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .seo-faq-question {
        gap: 14px;
        padding: 14px 0;
    }

    .seo-faq-number {
        width: 34px;
        min-width: 34px;
        height: 34px;
        font-size: 1.3rem;
    }

    .seo-faq-question-text {
        font-size: 1rem;
    }

    .seo-faq-chevron {
        width: 18px;
        min-width: 18px;
        margin-right: 0;
    }

    .seo-faq-answer-inner {
        padding: 0 0 18px 48px;
        font-size: 18px;
        line-height: 1.5;
    }

    .seo-faq-answer-inner p {
        font-size: 0.8rem;
    }
}
