html, body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #222;
    background: #ffffff;
}

* {
    box-sizing: border-box;
}

a {
    color: #343b78;
}

.site-header {
    background-color: #ebecff;
    border-bottom: 1px solid #d4d7f5;
}

.header-inner {
    max-width: 1120px;
    min-height: 88px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    width: 109px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.company-name {
    color: #4a4f7a;
    font-size: 13px;
    white-space: nowrap;
}

.company-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.company-text {
    flex: 1;
}

.company-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-heading h2 {
    margin: 0;
}

.company-logo {
    width: 109px;
    height: 91px;
    object-fit: contain;
    display: block;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    color: #1f2450;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
    text-decoration: underline;
}

.hero {
    padding: 64px 28px 58px;
    background: #ffffff;
}

.content {
    max-width: 960px;
    margin: 0 auto;
}

.hero h1 {
    margin: 0 0 18px;
    color: #1f2450;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-summary {
    max-width: 780px;
    margin: 0 0 18px;
    color: #34385d;
    font-size: 20px;
    line-height: 1.55;
}

.hero p:not(.hero-summary),
.section p {
    max-width: 820px;
    font-size: 16px;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 28px;
}

.primary-button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 5px;
    background: #343b78;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.primary-button:hover,
.primary-button:focus {
    background: #272d61;
}

.section {
    padding: 44px 28px;
    border-top: 1px solid #eeeeee;
}

.section.alternate {
    background: #f8f8fc;
}

.section h2 {
    margin: 0 0 16px;
    color: #1f2450;
    font-size: 26px;
    font-weight: 600;
}

.language-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.language-links a {
    font-weight: 600;
}

.site-footer {
    border-top: 1px solid #d4d7f5;
    background: #ebecff;
    color: #4a4f7a;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
}

@media (max-width: 760px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .company-name {
        flex: 1;
    }

    .site-nav {
        width: 100%;
        margin-left: 0;
        padding-top: 8px;
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-summary {
        font-size: 18px;
    }

    .footer-inner {
        flex-direction: column;
    }
}
