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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1 0 auto;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    height: 56px;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: #000;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.logo-eye { width: 24px; height: 24px; background: #fff; border-radius: 50%; position: relative; }
.pupil { width: 15px; height: 15px; background: #000; border-radius: 50%; position: absolute; bottom: 3px; right: 2.5px; }

.logo-text { 
    font-family: 'Momo Trust Display', sans-serif; 
    font-size: 23px; 
    text-transform: lowercase; 
    position: relative; 
    top: 1px; 
}

.contacts-link {
    font-family: 'Momo Trust Display', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.2s;
    position: relative;
    top: 1px;
}

.contacts-link:hover { 
    opacity: 0.7; 
}

.footer {
    flex-shrink: 0;
    padding: 60px 0;
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    font-family: 'Rubik', sans-serif;
}

.footer-content { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-copy { color: #FFFFFF; font-size: 13px; font-weight: 500; }
.footer-address { color: #888888; font-size: 13px; line-height: 1.5; }
.footer-right { display: flex; gap: 40px; padding-top: 2px; }
.footer-right a { color: #888888; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-right a:hover { color: #FFFFFF; }

@media (max-width: 768px) {
    .footer-content { flex-direction: column; gap: 40px; }
    .footer-right { flex-direction: column; gap: 12px; padding-top: 0; }
}