body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f8f9fa;
    color: #222;
}

/* --- TOP BANNER --- */
.top-banner {
    width: 100%;
    background: linear-gradient(100deg, #647493 55%, #FFC90E 100%);
    color: #fff;
    padding: 0;
    margin: 0;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 24px #64749322;
}
.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1060px;
    width: 100%;
    padding: 48px 18px 40px 18px;
    gap: 48px;
}
.banner-logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-logo {
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 32px #0002;
    padding: 15px;
    object-fit: contain;
    border: 4px solid #FFC90E;
}
.banner-text {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-text h1 {
    font-size: 2.6em;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #fff;
    text-shadow: 0 4px 12px #64749370;
}
.banner-lead {
    font-size: 1.25em;
    font-weight: 500;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 10px #64749355;
}
.banner-cta {
    display: inline-block;
    background: #FFC90E;
    color: #647493;
    font-weight: bold;
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 1.07em;
    text-decoration: none;
    box-shadow: 0 2px 16px #0002;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    letter-spacing: 0.03em;
}
.banner-cta:hover, .banner-cta:focus {
    background: #fff;
    color: #647493;
    box-shadow: 0 4px 28px #FFC90E80;
}

/* --- REST OF THE PAGE --- */
nav {
    background: #647493;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    flex-wrap: wrap;
}
.brand {
    display: flex;
    align-items: center;
    font-size: 1.3em;
    font-weight: bold;
    padding: 12px 0;
    letter-spacing: 1px;
    gap: 10px;
}
.logo {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin: 0 10px;
}
nav ul li a, .lang-switch a {
    color: #fff;
    text-decoration: none;
    padding: 10px 8px;
    border-radius: 3px;
    transition: background 0.2s;
}
nav ul li a.active,
nav ul li a:hover,
.lang-switch a.active,
.lang-switch a:hover {
    background: #FFC90E;
    color: #647493;
}
.lang-switch a {
    margin-left: 6px;
    background: #647493;
    font-size: 0.95em;
    border: 1px solid #FFC90E;
}
main {
    max-width: 700px;
    margin: 40px auto 30px auto;
    background: #fff;
    padding: 28px 18px 22px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 10px #0001;
}
h1 {
    color: #647493;
}
.services {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services li {
    margin-bottom: 24px;
}
.services h2 {
    color: #FFC90E;
    margin-bottom: 6px;
}
footer {
    text-align: center;
    padding: 15px 0 6px 0;
    background: #647493;
    color: #fff;
    font-size: 0.98em;
    margin-top: 20px;
}
footer .address {
    font-size: 0.95em;
    margin-bottom: 4px;
    color: #FFC90E;
}
@media (max-width: 900px) {
    .banner-content {
        flex-direction: column;
        gap: 24px;
        padding: 36px 5vw 32px 5vw;
        align-items: center;
        text-align: center;
    }
    .banner-logo-wrap {
        justify-content: center;
    }
    .banner-text {
        align-items: center;
    }
}
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    main {
        padding: 12px 4vw;
    }
    .top-banner {
        min-height: 200px;
    }
    .banner-logo {
        width: 82px;
        height: 82px;
        padding: 8px;
        border-width: 3px;
    }
    .banner-text h1 {
        font-size: 1.45em;
    }
}