/* Privacy Policy page reset */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f6fb;
    color: #172033;
}

/* Hero section */
.privacy-hero-section {
    position: relative;
    min-height: 230px;
    padding: 120px 20px;
    background:
        /* linear-gradient(90deg, rgba(8, 24, 45, 0.82), rgba(8, 24, 45, 0.58), rgba(8, 24, 45, 0.82)), */
        url("../../images/ubmc/home/utility.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.privacy-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.32));
    z-index: 1;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.privacy-page-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.privacy-hero-content h1 {
    margin: 0 0 16px;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.privacy-hero-content p {
    max-width: 760px;
    margin: 0 auto;
    color: #edf6ff;
    font-size: clamp(15px, 2vw, 19px);
    line-height: 1.7;
}

/* Content area */
.privacy-page-section {
    background: linear-gradient(180deg, #f3f6fb 0%, #ffffff 100%);
    padding: 72px 20px 90px;
}

.privacy-container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

/* Legal card */
.privacy-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    border-radius: 18px;
    padding: 46px 52px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.privacy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0b4f8a, #1d9bd1);
}

/* Legal typography */
.privacy-card h2 {
    margin: 0 0 8px;
    color: #0b2f4f;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
}

.privacy-updated {
    margin-bottom: 28px;
    color: #516173;
    font-size: 15px;
}

.privacy-card h3 {
    margin: 34px 0 14px;
    color: #0b4f8a;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 800;
}

.privacy-card h4 {
    margin: 26px 0 10px;
    color: #172033;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.privacy-card p {
    margin: 0 0 16px;
    color: #253044;
    font-size: 16px;
    line-height: 1.82;
    font-weight: 400;
}

.privacy-card strong {
    color: #102a43;
    font-weight: 700;
}

.privacy-card ul {
    margin: 0 0 20px 22px;
    padding: 0;
}

.privacy-card li {
    margin-bottom: 8px;
    color: #253044;
    font-size: 16px;
    line-height: 1.7;
}

/* Tablet */
@media (max-width: 991px) {
    .privacy-hero-section {
        min-height: 360px;
        padding: 95px 18px;
    }

    .privacy-page-section {
        padding: 56px 18px 72px;
    }

    .privacy-card {
        padding: 36px 34px;
        border-radius: 16px;
    }

    .privacy-card h2 {
        font-size: 27px;
    }

    .privacy-card h3 {
        font-size: 20px;
    }

    .privacy-card p,
    .privacy-card li {
        font-size: 15.5px;
        line-height: 1.78;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .privacy-hero-section {
        min-height: 300px;
        padding: 72px 15px;
    }

    .privacy-page-label {
        margin-bottom: 14px;
        padding: 7px 16px;
        font-size: 12px;
    }

    .privacy-hero-content h1 {
        font-size: 32px;
    }

    .privacy-hero-content p {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .privacy-page-section {
        padding: 38px 12px 56px;
    }

    .privacy-card {
        padding: 28px 18px;
        border-radius: 14px;
    }

    .privacy-card h2 {
        font-size: 24px;
    }

    .privacy-card h3 {
        margin-top: 28px;
        font-size: 18px;
    }

    .privacy-card h4 {
        font-size: 16px;
    }

    .privacy-card p,
    .privacy-card li {
        font-size: 14px;
        line-height: 1.72;
    }
}