html, body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-image: url('background-home.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white !important;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: white !important; }

.nav-cta {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 8px 18px !important;
    color: white !important;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: rgba(255,255,255,0.22) !important; }
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo-img {
    height: 38px;
    width: 38px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.nav-cta {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 8px 18px !important;
    color: white !important;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: rgba(255,255,255,0.22) !important; }
.banner {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    color: white;
    padding: 22px 0 18px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.banner-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
}

.contacts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    padding: 36px 24px;
    width: 100%;
    box-sizing: border-box;
}

.banner1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 260px;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    transition: background 0.2s ease, border 0.2s ease;
}

.banner1:hover {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.region-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 8px;
    width: 100%;
    text-align: center;
}

.region-label small {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-right: 5px;
}

.contact-item {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 5px;
    line-height: 1.4;
}

.contact-item strong {
    font-weight: 800;
    opacity: 1;
}

a:link { color: inherit; text-decoration: none; }
a:visited { color: inherit; text-decoration: none; }
a:hover { color: inherit; }