/* FAQ Section */
.faq {
    padding: 80px 0;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
}

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg,
            rgba(var(--accent-color-rgb), 0.1),
            rgba(var(--secondary-color-rgb), 0.1));
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #b0b7c3;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    background: #080b12;
}

.footer-text {
    color: #b0b7c3;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 20px;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-link:hover {
    text-decoration: underline;
}