/* =========================================================
   Fonts
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Caption:wght@400&family=Titan+One&display=swap');

/* =========================================================
   CSS Variables & Design Tokens
   ========================================================= */
:root {
    /* Colors */
    --blue-light: #c1f2ff;
    --blue-dark: #043d48;
    --blue-white: #e6f4f1;
    --yellow: #ffdd57;
    --green: #71d16a;
    --magenta: #d83cff;
    --red: #c13939;
    --highlight: #bd5c00;
    --black: #222222;
    --white: #ffffff;

    /* Base scale (matches your 480 logic, fixed for static page) */
    --bs: 1;

    /* Fonts */
    --font-body: 'PT Sans Caption', sans-serif;
    --font-heading: 'Titan One', cursive;
}

/* =========================================================
   Base Reset & Typography
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    color: var(--blue-dark);
    background-color: var(--blue-white);
    font-size: 18px;
    line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--blue-dark);
    font-family: var(--font-heading);
    font-weight: 400;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

p {
    margin: 12px 0;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding-left: 20px;
}

li {
    margin: 6px 0;
}

a {
    color: var(--blue-dark);
    text-decoration: underline;
    text-decoration-color: rgba(189, 92, 0, 0.6);
    text-underline-offset: 3px;
}

/* =========================================================
   Utility
   ========================================================= */
.colorHighlight {
    color: var(--highlight);
}

.contentWidth {
    width: 100%;
    max-width: 1100px;
    padding: 0 4vw;
    margin: 0 auto;
}

/* =========================================================
   Card Component (from your base styles, adapted)
   ========================================================= */
.card {
    position: relative;
    width: 100%;
    padding: 24px 20px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.card::after {
    position: absolute;
    content: '';
    inset: 0;
    background-color: var(--white);
    z-index: -1;
    opacity: 0.9;
}

.card--dark {
    color: var(--blue-white);
}

.card--dark h1,
.card--dark h2,
.card--dark h3,
.card--dark h4 {
    color: var(--blue-white);
}

.card--dark::after {
    background-color: var(--blue-dark);
    opacity: 1;
}

/* =========================================================
   Privacy Page Layout
   ========================================================= */
.privacyPage__header {
    padding: 40px 0 20px;
}

.privacyPage__subtitle {
    margin-top: 8px;
    opacity: 0.85;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.privacyPage__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(4, 61, 72, 0.25);
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.4);
}

.privacyPage__main {
    padding-bottom: 60px;
}

.privacyPage__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.privacyPage__card h4 {
    margin-top: 20px;
}

.privacyPage__list {
    margin: 10px 0 10px 22px;
}

.privacyPage__linkLight {
    color: var(--blue-white);
    text-decoration-color: rgba(230, 244, 241, 0.7);
}

.privacyPage__footnote {
    opacity: 0.75;
    font-size: 14px;
    padding-top: 10px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 820px) {
    .privacyPage__grid {
        grid-template-columns: 1fr 1fr;
    }

    .privacyPage__cardWide {
        grid-column: 1 / -1;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 34px;
    }
}