/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: #0a1f44;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
}

/* NAV */
.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav a:hover {
    color: #00c3ff;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* HERO */
.hero img {
    width: 100%;
    height: auto;
}

/* CONTENT */
.content {
    display: flex;
    gap: 30px;
    margin: 40px auto;
}

.main-content {
    flex: 2;
}

.sidebar {
    flex: 1;
}

.news-item {
    margin-bottom: 20px;
}

.news-item img {
    width: 100%;
    border-radius: 5px;
}

/* FOOTER */
.footer {
    background: #0a1f44;
    color: white;
    text-align: center;
    padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav {
        display: none;
        flex-direction: column;
        background: #0a1f44;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 20px;
    }

    .nav.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .content {
        flex-direction: column;
    }
}