/* Basic reset and simple, clean layout */
:root {
    --max-width: 900px;
    --accent: #d6949d;
    --link-hover: #e73d54;
    --bg: #1e5570;
    --text: #d1dde6;
    --muted: #aeb9c0;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header {
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}

.logo {
    width: 150px;
    height: 70px;
    border: 2px dashed rgba(11,95,122,0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: var(--text);
}

.logo-sub {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}

.contact {
    text-align: right;
    font-size: 14px;
}

a {
    color: var(--accent);
    text-decoration: none;
}
a:hover,
a:focus {
    color: var(--link-hover);
    text-decoration: underline;
}


h1 {
    font-size: 28px;
    margin: 18px 0 8px;
    color: var(--text);
}

h2 {
    font-size: 18px;
    margin: 12px 0;
    color: var(--text);
}


.about p {
    margin: 0 0 12px;
}

.services ul {
    list-style: disc;
    margin: 0 0 16px 20px;
    padding: 0;
}

.cta p {
    margin: 6px 0;
}

.site-footer {
    border-top: 1px solid rgba(6,38,46,0.06);
    padding: 12px 0;
    margin-top: 28px;
    color: var(--muted);
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width:640px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact {
        text-align: left;
    }

    .logo {
        width: 100%;
        height: auto;
        padding: 12px;
    }
}

/* Small accessibility touches */
a:focus {
    outline: 3px solid rgba(11,95,122,0.12);
    outline-offset: 2px;
}

/* small visual polish for headings/links */
h1,h2{line-height:1.15}
