* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.header {
    background-color: #5eb9c5;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background-color: #ffffff4d;
    border-radius: 50%;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-menu a:hover {
    background-color: #ffffff33;
}

.nav-menu a.active {
    background-color: #ffffff4d;
    font-weight: 600;
}
