@charset "utf-8";

header {
    background: #20447D;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #FF2400;
}

.cta {
    background: #FF2400;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
}

@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 60px;
        right: 0;
        background: #20447D;
        flex-direction: column;
        width: 200px;
        padding: 15px;
        display: none;
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}