.legal-title {
    position: relative;
    margin-top: 80px;
    min-height: min(56vh, 520px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: transparent;
    color: #ffffff;
    font-size: inherit;
}

.legal-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 16, 64, 0.92) 0%, rgba(26, 41, 128, 0.72) 48%, rgba(26, 41, 128, 0.45) 100%),
        url('assets/images/consultation title.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: aaHeroZoom 18s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
    z-index: 0;
}

.legal-title .title-container {
    position: relative;
    z-index: 1;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 90px 72px;
    text-align: center;
    animation: aaFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.legal-title .aa-kicker {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.78);
}

.legal-title h1 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.legal-content {
    padding: 80px 90px;
    background-color: #f4f6fc;
}

.content-container {
    max-width: 820px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.content-container h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    color: #1a2980;
    margin: 40px 0 16px;
    letter-spacing: -0.02em;
}

.content-container h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    color: #1a2980;
    margin: 28px 0 12px;
}

.content-container p {
    margin-bottom: 18px;
    color: #5a6078;
}

.content-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-container li {
    margin-bottom: 10px;
    color: #5a6078;
}

@media screen and (max-width: 1024px) {
    .legal-title .title-container {
        padding: 80px 40px 56px;
    }

    .legal-content {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 768px) {
    .legal-title .title-container {
        padding: 72px 20px 48px;
    }

    .legal-content {
        padding: 40px 20px;
    }

    .content-container h2 {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .legal-title::before,
    .legal-title .title-container {
        animation: none;
    }
}
