* {
    box-sizing: border-box;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #333;
    color: white;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

.navbar-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-menu li {
    margin: 0 15px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: #ff6347; /* Change color on hover */
}

/* Hamburger icon */
.navbar-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-menu {
        display: none; /* Hide menu by default on small screens */
        flex-direction: column; /* Stack items vertically */
        position: absolute;
        top: 60px; /* Below the navbar */
        left: 0;
        right: 0;
        background-color: #333;
        padding: 15px 0;
    }

    .navbar-menu li {
        margin: 10px 0; /* Margin for vertical spacing */
        text-align: center; /* Center align text */
    }

    .navbar-toggle {
        display: block; /* Show hamburger icon */
    }

    .navbar-menu.active {
        display: flex; /* Show menu when active */
    }
}
