* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f4f6f8;
    color: #17212b;
    font-family: Arial, sans-serif;
}

.site-header {
    padding: 20px;
}

.language-links {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.language-links a {
    color: #34495e;
    text-decoration: none;
}

.home-page {
    width: min(900px, calc(100% - 32px));
    margin: 60px auto;
}

.intro {
    margin-bottom: 36px;
    text-align: center;
}

.intro h1 {
    margin: 0 0 12px;
    font-size: 48px;
}

.intro h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 400;
}

.report-choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.choice-card {
    display: flex;
    min-height: 190px;
    padding: 32px;
    border: 1px solid #d7dde3;
    border-radius: 12px;
    background: #ffffff;
    color: #17212b;
    text-decoration: none;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(25, 40, 55, 0.08);
}

.choice-card:hover {
    border-color: #607080;
    transform: translateY(-2px);
}

.choice-card strong {
    margin-bottom: 12px;
    font-size: 28px;
}

.choice-card span {
    color: #52606d;
    font-size: 17px;
    line-height: 1.5;
}

@media (max-width: 650px) {
    .home-page {
        margin-top: 30px;
    }

    .report-choices {
        grid-template-columns: 1fr;
    }

    .intro h1 {
        font-size: 38px;
    }
}