:root {
    --bg: #f4f4f1;
    --text: #1f2937;
    --navy: #233a63;
    --white: #fff;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.site-logo {
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.site-header nav {
    display: flex;
    gap: 24px;
}

.site-header nav a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
}

.hero {
    padding: 100px 48px;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero h1 {
    margin: 0 0 24px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--navy);
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.7;
}

.cms-section {
    padding: 56px 48px;
}

.cms-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.cms-columns {
    display: grid;
    gap: 32px;
}

.cms-columns--one {
    grid-template-columns: 1fr;
}

.cms-columns--two_equal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.simple-rich-text {
    font-size: 1.05rem;
    line-height: 1.75;
}

.simple-rich-text > *:first-child {
    margin-top: 0;
}

.simple-rich-text > *:last-child {
    margin-bottom: 0;
}

.site-footer {
    padding: 32px 48px;
    background: var(--navy);
    color: var(--white);
}

@media (max-width: 760px) {
    .site-header,
    .hero,
    .cms-section,
    .site-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .site-header,
    .site-header nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .cms-columns--two_equal {
        grid-template-columns: 1fr;
    }
}
