.qing-faq {
    width: 100%;
}

.qing-faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .qing-faq__grid {
        grid-template-columns: 4fr 8fr;
        gap: 4rem;
    }
}

/* Left Column */
.qing-faq__left {
    display: flex;
    flex-direction: column;
}

.qing-faq__subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: #196eca;
    margin: 0 0 0.75rem;
}

.qing-faq__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.875rem;
    color: #0f1d2f;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .qing-faq__title {
        font-size: 2.25rem;
    }
}

.qing-faq__description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 2rem;
}

/* Categories */
.qing-faq__cats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qing-faq__cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0f1d2f;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.qing-faq__cat:hover {
    background-color: #f9f9f9;
}

.qing-faq__cat.active {
    background-color: #0f1d2f;
    color: #ffffff;
}

.qing-faq__cat-count {
    color: #196eca;
    font-size: 0.75rem;
    font-weight: 600;
}

/* CTA Box */
.qing-faq__cta {
    padding: 1.5rem;
    margin-top: 2.5rem;
    background-color: #0f1d2f;
}

.qing-faq__cta-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #196eca;
    margin: 0 0 0.5rem;
}

.qing-faq__cta-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.qing-faq__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #196eca;
    text-decoration: none;
    transition: color 0.2s ease;
}

.qing-faq__cta-link:hover {
    color: #ffffff;
}

.qing-faq__cta-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.qing-faq__cta-link:hover svg {
    transform: translateX(4px);
}

/* Right Column - FAQ Items */
.qing-faq__right {
    min-width: 0;
}

.qing-faq__list {
    display: flex;
    flex-direction: column;
}

.qing-faq__item {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.qing-faq__item.open {
    background: #fbfaf6;
}

.qing-faq__item.hidden {
    display: none;
}

.qing-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    gap: 1.5rem;
    transition: color 0.3s ease;
}

.qing-faq__question:hover {
    color: #196eca;
}

.qing-faq__question-text {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0f1d2f;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .qing-faq__question-text {
        font-size: 1.25rem;
    }
}

.qing-faq__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.qing-faq__icon svg {
    width: 14px;
    height: 14px;
    stroke: #196eca;
}

.qing-faq__item.open .qing-faq__icon {
    background: #196eca;
    border-color: #196eca;
    transform: rotate(45deg);
}

.qing-faq__item.open .qing-faq__icon svg {
    stroke: #ffffff;
}

.qing-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.qing-faq__item.open .qing-faq__answer {
    max-height: 400px;
    padding-bottom: 1.75rem;
}

.qing-faq__answer p {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
}
