.faq-section {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 50px;
    text-align: center;
}

.faq-label {
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: #ddd;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #fff;
}

.faq-icon {
    font-size: 1.4rem;
    color: #555;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-open .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0;
}

.faq-open .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 20px 0;
    }
}
