.faq-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 1000px; /* Increased to allow more room for left-aligned text */
    margin: 0; /* Align to the left of the section */
}

.faq-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-rose);
    box-shadow: 0 10px 30px rgba(143, 125, 101, 0.05);
}

.faq-header {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-rose);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    transition: transform 0.4s ease;
}

/* Open State */
.faq-item.faq-open {
    border-color: var(--accent-gold);
    background: var(--bg-tertiary);
}

.faq-item.faq-open .faq-icon {
    transform: rotate(90deg);
}

.faq-item.faq-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    pointer-events: none;
}

.faq-item.faq-open .faq-content {
    pointer-events: auto;
}

.faq-text {
    padding: 10px 32px 32px; /* Reduced top padding */
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-family: var(--font-body);
}

/* Ensure reveal animation doesn't break clicking after it's done */
.faq-item.revealed {
    transform: none !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    .faq-header {
        padding: 20px 24px;
    }
    .faq-question {
        font-size: 16px;
    }
}
