* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
    scroll-behavior: smooth;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #004466;
    padding: 15px 30px;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.hamburger::before {
    content: "\2630";
}

#menu-toggle:checked+.hamburger::before {
    content: "\2715";
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-links li a:hover {
    background: #006699;
}

.nav-links li a.active {
    background: #ff9933;
    color: #fff;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        background: #004466;
        border-radius: 0 0 10px 10px;
        display: none;
        padding: 10px 0;
    }

    #menu-toggle:checked~.nav-links {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }
}

.hero,
.content {
    text-align: center;
    padding: 40px 20px;
}

.hero img,
.content img {
    width: 60%;
    max-width: 500px;
    margin-top: 20px;
    border-radius: 10px;
    border: 3px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    background: #004466;
    color: #fff;
    padding: 15px 0;
    margin-top: 40px;
}