:root {
    --blue: #1E3A8A;
    --orange: #F97316;
    --light: #F8FAFC;
    --text: #111827;
}

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

header {
    background: var(--blue);
    color: white;
    padding: 1rem;
    text-align: center;
}

.logo {
    font-size: 2rem;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a[aria-current="page"] {
    text-decoration: underline;
}

.hero {
    padding: 2rem;
    text-align: center;
}

.cta {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 0.8rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
}

footer {
    background: var(--blue);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
