:root {
    --primary: #9DBEBB;
    --primary-deep: #6F9692;
    --accent: #FFE5D9;
    --accent-soft: #FFF1EA;
    --accent-border: #F7D4C2;
    --brand-navy: #2D3648;
    --surface-page: #FDFBF7;
    --surface-card: #FFFFFF;
    --surface-soft: #F7F3EC;
    --stroke-soft: #E9E3DA;
    --text-strong: #2D3648;
    --text-muted: #5C635C;
    --sage-light: #E8EFEA;
    --off-white: #FDFCFB;
    --border-radius: 28px;
    --shadow: 0 28px 56px -36px rgba(45, 54, 72, 0.24);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    padding: 42px 20px 30px;
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-strong);
    background:
        radial-gradient(1200px 420px at 10% -8%, var(--sage-light), transparent 56%),
        radial-gradient(860px 320px at 100% 0%, var(--accent-soft), transparent 48%),
        linear-gradient(180deg, var(--surface-soft), var(--surface-page));
    display: flex;
    justify-content: center;
    line-height: 1.6;
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

body::before {
    width: 420px;
    height: 420px;
    top: -170px;
    right: -140px;
    background: radial-gradient(circle at center, rgba(157, 190, 187, 0.22), transparent 70%);
}

body::after {
    width: 360px;
    height: 360px;
    bottom: -170px;
    left: -110px;
    background: radial-gradient(circle at center, rgba(244, 172, 183, 0.18), transparent 70%);
}

.container {
    max-width: 940px;
    width: 100%;
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--surface-card);
    border: 1px solid var(--stroke-soft);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 58px 60px;
    margin-bottom: 24px;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), rgba(157, 190, 187, 0.48), var(--accent-border));
}

header {
    margin-bottom: 40px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid var(--accent-border);
    background: linear-gradient(180deg, var(--off-white), var(--accent-soft));
}

.brand-mark-wrap {
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-mark {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.brand-name {
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    letter-spacing: 0.26em;
    font-weight: 600;
    color: rgba(111, 150, 146, 0.95);
}

h1 {
    margin: 0 0 12px;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 600;
    color: var(--text-strong);
}

.subtitle {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.85;
}

.policy-summary {
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid var(--stroke-soft);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(232, 239, 234, 0.58), rgba(255, 241, 234, 0.45));
}

section + section {
    border-top: 1px solid var(--stroke-soft);
    margin-top: 28px;
    padding-top: 28px;
}

h2 {
    margin: 0 0 13px;
    font-family: "Quicksand", "Outfit", sans-serif;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-strong);
}

h3 {
    margin: 20px 0 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-strong);
}

p,
ul,
li {
    color: var(--text-muted);
    font-size: 17px;
}

p {
    margin: 0 0 16px;
}

ul {
    margin: 0 0 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

li::marker {
    color: var(--primary-deep);
}

strong {
    color: var(--text-strong);
}

.policy-link {
    color: var(--brand-navy);
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.policy-link:hover {
    color: var(--brand-navy);
    text-decoration-color: var(--brand-navy);
}

.footer {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 30px;
    opacity: 0.74;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.55s ease-out forwards;
    transform: translateY(8px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {
    body {
        padding: 16px;
    }

    .card {
        padding: 34px 22px 28px;
        border-radius: 20px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 23px;
    }

    h3 {
        font-size: 17px;
    }

    p,
    ul,
    li {
        font-size: 16px;
    }

    section + section {
        margin-top: 24px;
        padding-top: 24px;
    }
}
