.faq-section {
    padding: 3rem 3rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--lot-green);
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(transparent 65%, rgba(232, 119, 34, 0.4) 65%);
    background-size: 100% 100%;
    line-height: 1.3;
    padding: 0 0.3rem;
    border-radius: 4px;
    display: inline-block;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    overflow: hidden;
    background: white;
}

.faq-item:first-child {
    border-radius: 12px 12px 0 0;
}

.faq-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.faq-item:only-child {
    border-radius: 12px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lot-green);
    transition: all 0.3s ease;
}

.faq-question span {
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(232, 119, 34, 0.1);
}

.faq-item.active .faq-question {
    background-color: rgba(232, 119, 34, 0.25);
    border-left: 3px solid var(--lot-orange);
}

.faq-item.active .faq-question span {
    color: var(--lot-green);
}

.faq-icon {
    color: var(--lot-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
    margin-top: 0.5rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.faq-answer strong {
    color: var(--lot-orange);
    font-weight: 700;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.faq-answer ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 20px;
    height: 20px;
    background-color: rgba(232, 119, 34, 0.2);
    border-radius: 50%;
}

.faq-answer ul li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lot-orange);
    font-size: 0.75rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
        max-width: 100%;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
}
