/* FAQ Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header__description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* FAQ Navigation */
.faq-nav {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-nav__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.faq-nav__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-nav__item {
    margin: 0;
}

.faq-nav__link {
    display: block;
    padding: 12px 16px;
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.faq-nav__link:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.faq-section__title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    position: relative;
}

.faq-section__title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #764ba2;
}

/* FAQ Item */
.faq-item {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item__question {
    background: #f8f9fa;
    padding: 24px 30px;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item__question:hover {
    background: #e9ecef;
}

.faq-item__question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #667eea;
    transition: all 0.3s ease;
}

.faq-item.active .faq-item__question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item__answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-item__answer {
    padding: 30px;
    max-height: 1000px;
}

.faq-item__answer-content {
    line-height: 1.7;
    color: #555;
}

.faq-item__answer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-item__answer-content li {
    margin-bottom: 8px;
}

.faq-item__answer-content strong {
    color: #333;
    font-weight: 600;
}

/* Contact Section */
.faq-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    margin-top: 80px;
}

.faq-contact__title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.faq-contact__description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-contact__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.faq-contact__btn--primary {
    background: #667eea;
    color: white;
    border: 2px solid #667eea;
}

.faq-contact__btn--primary:hover {
    background: #5a6fd8;
    border-color: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.faq-contact__btn--secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.faq-contact__btn--secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header__title {
        font-size: 2.5rem;
    }
    
    .page-header__description {
        font-size: 1.1rem;
    }
    
    .faq-container {
        padding: 60px 15px;
    }
    
    .faq-nav {
        padding: 20px;
    }
    
    .faq-nav__list {
        grid-template-columns: 1fr;
    }
    
    .faq-section__title {
        font-size: 1.8rem;
    }
    
    .faq-item__question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-item__question::after {
        right: 20px;
    }
    
    .faq-item__answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-item__answer {
        padding: 20px;
    }
    
    .faq-contact {
        padding: 40px 20px;
    }
    
    .faq-contact__title {
        font-size: 1.8rem;
    }
    
    .faq-contact__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-contact__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header__title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .faq-container {
        padding: 40px 10px;
    }
    
    .faq-item__question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-item__answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-item__answer {
        padding: 16px;
    }
} 