/* ReSharper disable CssBrowserCompatibility */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    max-width: 1350px;
    padding: 1rem 1.5rem;
}

.illustration {
    margin: 0 auto 1rem;
}

.illustration img {
    height: 38vh;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
}

.lang-section {
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.lang-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 0.3rem;
}

h1 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #222;
}

p {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #555;
    margin-bottom: 0.6rem;
}

.btn {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    background-color: #0067b3;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #005291;
}
