@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    background-color: #ffffff;
    color: #333333;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* Шапка (светлая) */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: #333;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover {
    color: #333;
    border-bottom-color: #333;
}

.nav-list li:first-child a {
    font-weight: 400;
}

.nav-list li:last-child a {
    font-weight: 700;
}