:root {
    --ink: #182026;
    --muted: #5b6570;
    --paper: #ffffff;
    --wash: #f4f7f7;
    --line: #d8e0df;
    --blue: #315c96;
    --green: #2f6f61;
    --gold: #ad7f2d;
    --deep: #14262d;
    --shadow: 0 18px 48px rgba(17, 32, 39, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--wash);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

a {
    color: var(--blue);
}

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(216, 224, 223, 0.85);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-height: 72px;
    padding: 14px clamp(18px, 4vw, 56px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    align-items: center;
    color: var(--ink);
    display: inline-flex;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    align-items: center;
    background: var(--deep);
    border-radius: 6px;
    color: #ffffff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    letter-spacing: 0;
    width: 48px;
}

.brand-copy {
    display: grid;
    gap: 0;
}

.brand-copy span {
    color: var(--muted);
    font-size: 13px;
}

.site-nav,
.site-footer nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-nav a,
.site-footer a {
    color: var(--ink);
    font-size: 14px;
    text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.hero {
    background-image: linear-gradient(90deg, rgba(13, 29, 36, 0.82), rgba(13, 29, 36, 0.52) 42%, rgba(13, 29, 36, 0.14)), url("/Assets/Images/appointment-consultation-hero.png");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    min-height: 72vh;
    padding: clamp(72px, 12vh, 130px) clamp(20px, 6vw, 80px);
}

.hero-inner {
    max-width: 720px;
}

.eyebrow {
    color: #c8ece3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 16px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0;
}

h1 {
    font-size: 72px;
    max-width: 680px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 20px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
    margin: 22px 0 0;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 6px;
    display: inline-flex;
    font-weight: 700;
    min-height: 46px;
    padding: 11px 18px;
    text-decoration: none;
}

.button.primary {
    background: #ffffff;
    color: var(--deep);
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.62);
    color: #ffffff;
}

.band {
    padding: clamp(52px, 8vw, 96px) clamp(20px, 6vw, 80px);
}

.band.paper {
    background: var(--paper);
}

.band-header {
    align-items: end;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    margin: 0 auto 34px;
    max-width: 1120px;
}

.band-header p {
    color: var(--muted);
    margin: 0;
}

.grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1120px;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
}

.info-card strong,
.notice strong {
    color: var(--deep);
}

.info-card p {
    color: var(--muted);
    margin: 10px 0 0;
}

.accent {
    background: var(--green);
    border-radius: 3px;
    height: 4px;
    margin-bottom: 18px;
    width: 42px;
}

.steps {
    counter-reset: steps;
    display: grid;
    gap: 14px;
    margin: 0 auto;
    max-width: 960px;
}

.step {
    align-items: start;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 18px;
    grid-template-columns: 46px 1fr;
    padding: 22px;
}

.step:before {
    align-items: center;
    background: rgba(49, 92, 150, 0.1);
    border-radius: 6px;
    color: var(--blue);
    content: counter(steps);
    counter-increment: steps;
    display: inline-flex;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.step p {
    color: var(--muted);
    margin: 6px 0 0;
}

.notice {
    background: #f8fbfa;
    border-left: 4px solid var(--gold);
    margin: 0 auto;
    max-width: 960px;
    padding: 24px;
}

.notice p {
    margin: 8px 0 0;
}

.content-page {
    background: var(--paper);
    min-height: 72vh;
    padding: clamp(48px, 8vw, 88px) clamp(20px, 6vw, 80px);
}

.content-wrap {
    margin: 0 auto;
    max-width: 920px;
}

.content-wrap h1 {
    color: var(--deep);
    font-size: 58px;
}

.content-wrap h2 {
    border-top: 1px solid var(--line);
    font-size: 24px;
    margin-top: 34px;
    padding-top: 28px;
}

.content-wrap p,
.content-wrap li {
    color: var(--muted);
}

.content-wrap ul {
    padding-left: 22px;
}

.domain-pill {
    background: rgba(47, 111, 97, 0.1);
    border: 1px solid rgba(47, 111, 97, 0.22);
    border-radius: 999px;
    color: var(--green);
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 6px 12px;
}

.debug-table {
    border-collapse: collapse;
    margin-top: 24px;
    width: 100%;
}

.debug-table th,
.debug-table td {
    border: 1px solid var(--line);
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.debug-table th {
    background: #f5f7f7;
    width: 220px;
}

.site-footer {
    align-items: center;
    background: var(--deep);
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 28px clamp(18px, 4vw, 56px);
}

.site-footer div {
    display: grid;
    gap: 2px;
}

.site-footer strong {
    color: #ffffff;
}

.site-footer span {
    font-size: 13px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 820px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .band-header,
    .grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 68vh;
        padding-top: 82px;
    }

    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 34px;
    }

    .hero p {
        font-size: 19px;
    }

    .content-wrap h1 {
        font-size: 46px;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .site-nav,
    .site-footer nav {
        gap: 12px 16px;
    }

    .hero {
        min-height: auto;
        padding: 50px 20px 58px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 18px;
    }

    .content-wrap h1 {
        font-size: 36px;
    }

    .button {
        justify-content: center;
        width: 100%;
    }

    .step {
        grid-template-columns: 1fr;
    }
}
