/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
}

.navbar .logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-right: 20px;
}

.navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.navbar .nav-links li a:hover {
    color: #ff9800;
}

/* Hamburger menu for small screens */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
    }

    .navbar .nav-links li {
        margin-right: 0;
        text-align: center;
    }

    .navbar .hamburger {
        display: block;
    }

    .navbar.active .nav-links {
        display: flex;
    }
}
