body {
    background-color: #F4F4F4;
}

.nav-container {
    margin: 30px auto 0;
    width: 600px;
    max-width: 100%;
    height: 60px;
    background-color: #F9F9F9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}

.nav-container > a {
    padding-left: 24px;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 30px;
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 18px;
    justify-content: space-between;
    margin-right: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 24px;
}

.nav-item {
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: #666;
}

.nav-item.active {
    color: #1532EE;
    font-weight: 600;
}

.f-cabin {
    font-family: 'Cabin', sans-serif;
}

.footer {
    margin: 80px 0 0;
    padding: 48px 40px 32px;
    background-color: #F0F0F0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 100px;
    display: block;
    margin: 0 auto 32px;
    cursor: pointer;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #181818;
    border-top: 2px solid #D0D0D0;
    margin-top: 32px;
    padding-top: 16px;
}

.footer-right {
    text-decoration: none;
    color: #181818;
    font-family: 'Roboto', sans-serif;
    font-variant-ligatures: none;
    font-feature-settings: normal;
}

.footer-right:hover {
    text-decoration: underline;
    color: #181818;
}

@media (max-width: 1000px) {
    .footer {
        padding: 32px 24px 32px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 1000px) {
    .nav-container {
        width: auto;
        margin: 30px 40px 0;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #F9F9F9;
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }
}
