/* FAQ Section Styles - Minimal & Timeless */
.faq {
    position: relative;
    padding: 100px 0;
    background: #000000;
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 300;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active {
    border-color: #00ffff;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-question:hover {
    color: #00ffff;
}

.faq-question i {
    font-size: 12px;
    transition: transform 0.2s ease;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #00ffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 968px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 24px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

