.terms-hero {
    display: block;
    position: relative;
    max-width: 1200px;
    margin: 2.2rem auto 0;
    padding: 0 1.5rem;
    overflow: hidden;
    min-height: auto;
    background: transparent;
    color: var(--text-white);
}

.terms-hero .hero-content {
    max-width: 900px;
    margin: 0;
    padding: 2.15rem 2rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    transform: none;
}

.terms-title {
    margin-bottom: 0.8rem;
    color: var(--text-white);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.98;
    text-shadow:
        0 10px 26px rgba(0, 0, 0, 1),
        0 0 3px rgba(0, 0, 0, 0.98),
        0 0 18px rgba(0, 0, 0, 0.8);
}

.terms-subtitle {
    max-width: 66ch;
    margin-bottom: 1.45rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.98);
}

body {
    background-color: #000;
    background-image: url('/images/hero-premium.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 78px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    overflow-y: scroll !important;
    scrollbar-gutter: stable both-edges;
}

body {
    overflow-y: scroll;
}

header {
    background: rgba(15, 20, 25, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

footer {
    background: rgba(24, 24, 24, 0.68);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px) saturate(110%);
    -webkit-backdrop-filter: blur(6px) saturate(110%);
    margin-top: auto;
}

.terms-section {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 0 1.5rem 2rem;
    opacity: 1;
    transform: none;
}

.terms-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.terms-article {
    padding: 1.75rem;
    border-radius: 20px;
    background: rgba(10, 12, 16, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.terms-block + .terms-block {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-block h2 {
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 1.25rem;
    text-shadow: 0 7px 18px rgba(0, 0, 0, 0.98);
}

.terms-block p,
.terms-contact-list {
    color: rgba(255, 255, 255, 0.85);
}

.terms-block p,
.terms-contact-list li {
    line-height: 1.65;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

.terms-contact-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.terms-contact-list a {
    color: #ff6a74;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
}

.terms-contact-list a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .terms-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        padding-top: 86px;
    }

    .terms-hero {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .terms-hero .hero-content {
        padding: 1.6rem 1.25rem;
        border-radius: 18px;
    }

    .terms-title {
        font-size: clamp(1.95rem, 10vw, 3rem);
    }

    .terms-subtitle {
        font-size: 0.95rem;
    }

    .terms-section {
        margin-top: 1rem;
        padding: 0 1rem 2rem;
    }

    .terms-article {
        padding: 1.35rem;
        border-radius: 16px;
    }
}
