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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background-color: #f4f7f9; /* Light background */
    color: #333;
}

/* Header and Navigation */
header {
    background: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #3498db; /* A bright blue for hover */
}

/* Burger Menu */
.burger-menu {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 10px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav .nav-list {
        display: none; /* Hide nav links on smaller screens */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
        padding-bottom: 10px;
    }

    .main-nav .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 10px 20px;
        text-align: center;
    }

    .burger-menu {
        display: flex; /* Show burger menu on smaller screens */
    }
}