/* FAQ — фон как на login: картинка на body, не приближена (contain) */
.faq-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.faq-page .content {
    background-image: none;
    background: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container h1 {
    font-size: 2.2em;
    margin-bottom: 2rem;
    text-align: center;
    color: #2d3748;
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-container .breadcrumb {
    list-style: none;
    padding: 1rem 0;
    display: flex;
    gap: 0.5rem;
    font-size: 14px;
    color: #909090;
}

.faq-container .breadcrumb a {
    color: #6c5ce7;
    text-decoration: none;
}

.faq-container .breadcrumb li::after {
    content: " > ";
    margin-left: 0.5rem;
    color: #b0b0b0;
}

.faq-container .breadcrumb li:last-child::after {
    content: "";
}

.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    font-size: 1.8em;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-family: 'Playfair Display', serif;
    padding-bottom: 0.5rem;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.faq-item {
    margin: 1.5rem 0;
    padding: 30px 40px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    color: #2d3748;
    cursor: pointer;
    font-style: italic;
    font-weight: 600;
}

.faq-answer {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05em;
}

.faq-answer p {
    margin: 0.8rem 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.faq-answer a {
    color: #667eea;
    text-decoration: none;
}

.faq-answer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-container h1 {
        font-size: 1.8em;
    }

    .faq-section h2 {
        font-size: 1.3em;
    }

    .faq-item {
        padding: 20px 25px;
    }
}
