body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    color: #2a2a2a;
    background: rgb(251 246 236);
}

/* HEADER */
.logo img {
    height: 80px;
    width: auto;
}

.languages {
    display: flex;
    gap: 8px;
}

.language {
    width: 28px;
    height: 28px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    letter-spacing: .3px;

    border: 1px solid #dcdcdc;
    background: #fff;
    color: #555;

    cursor: pointer;
    transition: all .2s ease;
}

.language:hover {
    background: #f0f0f0;
}

.language.active {
    background: #2a2a2a;
    color: #fff;
    border-color: #2a2a2a;
}

/* NAV */
.nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;

    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;

    background: rgba(250,250,250,0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 900;
}

.nav a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    letter-spacing: .4px;
    padding: 4px 2px;
    position: relative;
    transition: color .2s ease;
}

.nav a:hover {
    color: #000;
}

.nav a.active {
    color: #000;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: #000;
}

/* CONTENT */
.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.section + .section {
    padding-top: 40px;
}

h2 {
    margin-top: 0;
    font-weight: 500;
}

p {
    line-height: 1.6;
}
/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: rgb(251 246 236);
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: #3d4eac;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    margin: 20px 0 30px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #3d4eac;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
   
}
.btn:hover {
    background: #313e89;
}
/* SLIDESHOW */

.slideshow {
    height: 80vh;
    overflow: hidden;
}

.slides {
    height: 100%;
    position: relative;
}

.slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fade 15s infinite;
}

.slides img:nth-child(1) { animation-delay: 0s; }
.slides img:nth-child(2) { animation-delay: 5s; }
.slides img:nth-child(3) { animation-delay: 10s; }

@keyframes fade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    30%  { opacity: 1; }
    40%  { opacity: 0; }
    100% { opacity: 0; }
}

/* ABOUT */

.about-content {
    display: flex;
    gap: 40px;
}

.about-text,
.map {
    flex: 1;
}

.map img {
    max-width: 75%;
    display: block;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .about-content {
        flex-direction: column;
    }
    .map img {
        max-width: 100%;
    }
}
.footer {
    background: #232f70;
    color: #eee;
    padding: 40px 10% 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-img {
    width: 100%;
    max-width: 200px;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.5;
    color: #c5c5c5;
}

.footer-contacts p {
    margin: 0 0 8px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #888;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
    }
}