.privacy-hero {
    position: relative;
    padding: 100px 0 70px;
    background:
        linear-gradient(135deg, rgba(9, 90, 75, 0.93), rgba(0, 25, 97, 0.90)),
        url("../img/privacy-banner.jpg") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.privacy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 28%);
    pointer-events: none;
}

.privacy-hero .container {
    position: relative;
    z-index: 2;
}

.privacy-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.privacy-hero__content h1 {
    color: #fff;
    font-size: 3rem;
    line-height: 1.08;
    margin-bottom: 14px;
}

.privacy-hero__content p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    margin-bottom: 0;
    font-size: 1rem;
}

.privacy-hero__meta {
    display: flex;
    justify-content: flex-end;
}

.privacy-stat-box {
    min-width: 220px;
    padding: 22px 22px 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.privacy-stat-box__label {
    display: block;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    font-weight: 700;
}

.privacy-stat-box__value {
    display: block;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
}

.privacy-main {
    background: #f7f9fc;
    padding-top: 52px;
    padding-bottom: 72px;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.privacy-side {
    position: sticky;
    top: 24px;
}

.privacy-side-card,
.privacy-block {
    background: #fff;
    border: 1px solid #e8eef5;
    box-shadow: 0 8px 22px rgba(20, 44, 88, 0.05);
}

.privacy-side-card {
    padding: 22px 20px;
}

.privacy-side-card h4 {
    color: #095a4b;
    margin-bottom: 14px;
}

.privacy-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-nav a {
    color: #25435c;
    line-height: 1.5;
    font-weight: 600;
}

.privacy-nav a:hover {
    color: #095a4b;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.privacy-block {
    padding: 28px 26px;
}

.privacy-block h2 {
    color: #183247;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.privacy-block p {
    color: #667085;
    line-height: 1.8;
    margin-bottom: 14px;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

body.theme-dark .privacy-main {
    background: #121212;
}

body.theme-dark .privacy-side-card,
body.theme-dark .privacy-block {
    background: #171717 !important;
    color: #d6deea !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 5px #55555559;
}

body.theme-dark .privacy-block h2,
body.theme-dark .privacy-side-card h4 {
    color: #ededf3 !important;
}

body.theme-dark .privacy-block p,
body.theme-dark .privacy-nav a {
    color: #c9d4e1 !important;
}

@media (max-width: 991.98px) {
    .privacy-hero {
        padding: 86px 0 60px;
    }

    .privacy-hero__content h1 {
        font-size: 2.4rem;
    }

    .privacy-hero__meta {
        justify-content: flex-start;
        margin-top: 24px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-side {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .privacy-hero {
        padding: 74px 0 54px;
    }

    .privacy-hero__content h1 {
        font-size: 2rem;
    }

    .privacy-side-card,
    .privacy-block {
        padding: 20px 18px;
    }
}

@media (max-width: 575.98px) {
    .privacy-hero__content h1 {
        font-size: 1.8rem;
    }

    .privacy-stat-box {
        width: 100%;
    }
}