.faq-section {
    padding: 100px 50px;
    box-sizing: border-box;
    background-color: #050b11;
    display: flex;
    justify-content: center;
}

.faq-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 80px;
}

.faq-header-col {
    flex: 0 0 35%;
    max-width: 380px;
}

.faq-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    line-height: 1.2;
    color: var(--text-light);
}

.faq-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    font-weight: 300;
}

.faq-list-col {
    flex: 1 1 65%;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding: 15px 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    color: var(--text-light);
    outline: none;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-trigger:hover .faq-question {
    color: var(--accent-color);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    padding-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

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

@media (max-width: 992px) {
    .faq-section {
        padding: 80px 30px;
    }
    .faq-container {
        flex-direction: column;
        gap: 50px;
    }
    .faq-header-col {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .faq-list-col {
        flex: 1 1 auto;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 20px;
    }
    .faq-question {
        font-size: 0.95rem;
    }
    .faq-answer {
        font-size: 0.85rem;
    }
}