body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: #1e2d4f;
    color: white;
    font-size: 13px;
    height: 35px;
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* HEADER */
.main-header {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
    background: transparent;
}

.main-header.scrolled {
    background: #1e2d4f;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.main-header.scrolled {
    background: #1e2d4f;
}

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



.logo a {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
}

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

/* HERO */
.hero {
    height: 500px;
    background: #2e4a86;
    color: white;
    display: flex;
    align-items: center;
    padding-top: 100px;
}