/* page-shared.css - общий каркас внутренних страниц */
.about-page,
.autopark-page,
.faq-page {
    background-color: #f8f9fa;
    margin-top: var(--page-top-offset);
    padding: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.about-hero,
.faq-hero {
    padding: 40px 0;
    background: #ffffff;
}

.about-hero-title,
.faq-hero-title,
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.about-hero-title {
    margin-bottom: 30px;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

.faq-hero-title {
    margin-bottom: 20px;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(30px);
    animation: modernFadeUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

.section-title {
    margin-bottom: 1rem;
    color: #1e293b;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.15s;
}

.about-hero-title .title-accent,
.faq-hero-title .title-accent,
.section-title .title-accent {
    color: #2d5be3;
}

.section-title .title-accent {
    position: relative;
    display: inline-block;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

@media (max-width: 768px) {
    .about-page,
    .autopark-page,
    .faq-page {
        margin-top: var(--page-top-offset-mobile);
    }

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

    .section-subtitle {
        font-size: 1rem;
    }
}
