/* FAQ Page Layout */
.faq-page {
    padding: 0;
}

/* 
   Наследуем стили от .faq-section из главной страницы
   Все стили аккордеона берутся из основного файла styles.css
*/

/* Дополнительные стили только для страницы FAQ */
.faq-page .faq-section {
    margin-bottom: 3rem;
}

.faq-page .faq-section:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.faq-contact {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.faq-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.faq-contact-content {
    position: relative;
    z-index: 1;
}

.faq-contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Novelist', serif;
}

.faq-contact-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.faq-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-info-value a {
    color: inherit;
    text-decoration: none;
}

.contact-info-value a:hover {
    color: inherit;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-page h2 {
        font-size: 1.5rem;
        margin-bottom: 33px;
        margin-top: 0;
    }
    
    .faq-page .accordion {
        margin: 0 auto 2rem auto;
    }
    
    .faq-page .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-page .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .faq-contact {
        padding: 2rem 1rem;
    }
    
    .faq-contact-title {
        font-size: 1.5rem;
    }
    
    .faq-contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}