/* FAQ Section */
.faq {
    background: #ffffff;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.faq h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.faq p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.accordion-item {
    background: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #1a1a1a;
    background: #f9f9f9;
    padding: 1.5rem;
    border: none;
    border-radius: 0;
    text-align: left;
    transition: background 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #0f0f0f;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3E%3Cpath d='M8 4l4 4-4 4-4-4 4-4z'/%3E%3C/svg%3E");
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #444444;
    padding: 1.5rem;
    background: #ffffff;
    line-height: 1.6;
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }

.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    animation: revealCard 0.8s ease forwards;
}

.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.4s; }

@keyframes revealText {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes revealCard {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Decorative Element */
.faq::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 1px;
    background: #1a1a1a;
    opacity: 0.4;
    transform: rotate(-45deg);
    animation: drawLine 1.5s ease forwards 0.5s;
}

@keyframes drawLine {
    from { width: 0; opacity: 0; }
    to { width: 50px; opacity: 0.4; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }

    .faq h2 {
        font-size: 2.2rem;
    }

    .faq p {
        font-size: 1rem;
    }

    .accordion {
        max-width: 100%;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .accordion-body {
        font-size: 0.9rem;
        padding: 1.25rem;
    }
}