
    :root {
        --primary: #006799;
        --secondary: #008ec2;
        --accent: #00d084;
        --dark: #020202;
        --light: #f4f4f4;
    }
    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        margin: 0;
    }
    header {
        background: var(--primary);
        color: white;
        padding: 1rem 0;
    }
    .header-image {
        width: 100%;
        height: 300px;
        background-image: url('/assets/cropped-spring-abwmnys-headder.png');
        background-size: cover;
        background-position: center;
        display: block;
    }
    nav {
        background: #011835;
        padding: 0.5rem;
    }
    nav ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
        justify-content: center;
    }
    nav li { margin: 0 10px; }
    nav a { color: white; text-decoration: none; font-size: 0.9rem; }
    .hero {
        padding: 4rem 2rem;
        background: #eee;
        text-align: center;
    }
    .container { max-width: 1100px; margin: auto; padding: 20px; }
    .content-grid {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    @media (max-width: 768px) {
        .content-grid { grid-template-columns: 1fr; }
    }
    .img-box {
        background: #ddd;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    footer {
        background: var(--dark);
        color: white;
        text-align: center;
        padding: 2rem;
        margin-top: 40px;
    }
