* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header styles */
.header {
    display: flex
    ;
        justify-content: space-evenly;
        align-items: flex-start;
        padding: 20px 40px;
        background-color: #000;
        color: white;
        flex-direction: row;
        align-content: stretch;
        flex-wrap: wrap;
    }


.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ff6a00;
}

/* Burger menu styles */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu div {
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
}

/* Mobile and tablet styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .nav-links.active {
        display: flex;
        flex-direction: row; /* Horizontal layout when the menu is open */
        justify-content: space-between;
    }

    .nav-links a {
        padding: 10px 20px;
        text-align: center;
    }

    .burger-menu {
        display: flex;
    }
}