/* FAQ Page Styles */
body {
    margin-top: 80px;
}
:root {
    --ivory: #FEFCFA;
    --clay: #E3C8B0;
    --sage: #B5C2B7;
    --taupe: #85827C;
    --dusty-rose: #D4B9A3;
    --deep-moss: #8B5E3C;
    --chocolate: #4A4845;
    --linen: #F4ECE3;
}

/* Hero Section */
.faq-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    text-align: center;
    padding: 0 2rem;
}

.faq-hero-content {
    max-width: 800px;
    z-index: 1;
}

.faq-hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--chocolate);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-hero-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1rem;
    color: var(--taupe);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}


/* Accordion */
.faq-accordion {
    margin-bottom: 4rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(181, 194, 183, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--ivory);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: var(--chocolate);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(244, 236, 227, 0.5);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: var(--taupe);
    line-height: 1.8;
}

/* Contact CTA */
.faq-contact {
    text-align: center;
    padding: 2rem;
    background-color: rgba(244, 236, 227, 0.5);
    border-radius: 8px;
}

.faq-contact p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1rem;
    color: var(--taupe);
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--deep-moss);
    color: white;
    border-radius: 4px;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #6F4B30;
    transform: translateY(-2px);
}

/* Floating Elements */
.floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        margin-top: 70px;
    }
    .faq-hero-title {
        font-size: 2.2rem;
    }

    .faq-hero-subtitle {
        font-size: 1rem;
    }

    .faq-container {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 60px;
    }
    .faq-hero {
        height: 35vh;
        min-height: 250px;
    }

    .faq-hero-title {
        font-size: 1.8rem;
    }

}