.faq-page {
    padding: 10rem 0 4rem;
    min-height: 100vh;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(226, 76, 58, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 5px 20px rgba(226, 76, 58, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(226, 76, 58, 0.1);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-secondary);
}

.faq-cta {
    background: linear-gradient(135deg, rgba(226, 76, 58, 0.1), rgba(83, 52, 164, 0.1));
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.footer__content {
    grid-template-columns: 1fr 1fr 1fr !important;
}

.footer__logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer__text {
    color: #FFFFFF;
    font-size: 0.875rem;
}

.footer__menu a,
.footer__address,
.footer__address a,
.footer__bottom p {
    color: #FFFFFF !important;
}

.footer__menu a:hover,
.footer__address a:hover {
    color: var(--color-accent) !important;
}

@media (max-width: 768px) {
    .faq-page {
        padding: 8rem 0 3rem;
    }
    
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-category-title {
        font-size: 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1rem;
    }
    
    .faq-cta h2 {
        font-size: 1.5rem;
    }
}

