:root {
    --blue: #4A7EBD;
    --navy: #1B3A5C;
    --slate: #4a5770;
    --muted: #727f92;
    --surface: #ffffff;
    --background: #f8f9fc;
    --border: #e0e6f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
    background: radial-gradient(circle at top, #ffffff 0%, #f4f6fb 55%, #e9edf5 100%);
    color: var(--navy);
}

.page {
    min-height: 100vh;
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.brand {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    padding-left: 18px;
    padding-top: 8px;
}

.logo-crop-container {
    width: 360px;
    max-width: 100%;
    /* 
       Adjust height to crop the bottom logo. 
       Assuming the blue logo is the top half of the image.
    */
    height: 140px; 
    overflow: hidden;
    display: block;
}

.brand-mark {
    width: 100%;
    height: auto;
    display: block;
    /* Ensure the top of the image is always aligned to the top of the container */
    object-position: top left; 
}

.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(19, 38, 66, 0.07);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 14px;
}

h1 {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 2rem;
}

.contact-card {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.contact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.contact-card a {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    color: var(--blue);
    text-decoration: none;
    border-bottom: 2px solid rgba(47, 99, 197, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
    border-bottom-color: var(--blue);
}

footer {
    text-align: center;
    font-size: 0.95rem;
    color: var(--muted);
}

@media (max-width: 640px) {
    .page {
        padding: 48px 20px;
    }

    .details {
        padding: 32px 24px;
    }

    h1 {
        letter-spacing: 0.08em;
    }
}

@media (max-width: 480px) {
    .brand-mark, .brand-mark img {
        width: 260px;
    }
}
