.lp-faq {
    padding: 80px 0;
    background: var(--lp-bg-alt);
}

.lp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.lp-faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    background: var(--lp-bg);
}

.lp-faq-q {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 48px 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-text);
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1.6;
    position: relative;
}

.lp-faq-q::after {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 22px;
    font-weight: 300;
    color: var(--lp-primary);
    transition: transform 0.3s;
}

.lp-faq-item.open .lp-faq-q::after {
    content: '\2212';
}

.lp-faq-q:hover {
    background: var(--lp-bg-alt);
}

.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.lp-faq-item.open .lp-faq-a {
    max-height: 600px;
}

.lp-faq-a p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--lp-text-sub);
    line-height: 1.9;
}