* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

a {
    color: #007fed;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.Page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.Topbar {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: #ffffff;
    border-bottom: 1px solid #dbe3ea;
}

.Topbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.Topbar-logoMark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 127, 237, 0.24);
}

.Container {
    width: 100%;
    margin: 0 auto;
    padding: 36px 20px 56px;
}

.Hero {
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid #dbe3ea;
    border-radius: 16px;
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.04);
}

.Hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #007fed;
    font-size: 13px;
    font-weight: 700;
}

.Hero-title {
    margin: 16px 0 10px;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #0f172a;
}

.Hero-text {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.Meta {
    margin-top: 14px;
    font-size: 13px;
    color: #64748b;
}

.Section {
    background: #ffffff;
    border: 1px solid #dbe3ea;
    border-radius: 16px;
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.04);
    padding: 24px;
    margin-bottom: 18px;
}

.Section-title {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.Section-text {
    margin: 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.Section-text + .Section-text {
    margin-top: 12px;
}

.Section + .Section {
    margin-top: 18px;
}

.List {
    margin: 14px 0 0;
    padding-left: 20px;
}

.List li {
    margin-bottom: 10px;
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.Highlight {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid #cfe5ff;
    background: #f7fbff;
    border-radius: 12px;
    color: #1e3a5f;
    font-size: 14px;
    line-height: 1.7;
}

.FooterActions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.Button {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.Button:hover,
.Button:focus {
    text-decoration: none;
}

a.Button--primary,
a.Button--primary:visited,
.Button--primary,
.Button--primary:visited {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

a.Button--primary:hover,
a.Button--primary:focus,
.Button--primary:hover,
.Button--primary:focus {
    background: #1d4ed8;
    color: #ffffff;
    border-color: #1d4ed8;
    text-decoration: none;
}

a.Button--secondary,
a.Button--secondary:visited,
.Button--secondary,
.Button--secondary:visited {
    background: #ffffff;
    color: #0f172a;
    border-color: #dbe3ea;
}

a.Button--secondary:hover,
a.Button--secondary:focus,
.Button--secondary:hover,
.Button--secondary:focus {
    background: #f8fafc;
    color: #0f172a;
    border-color: #dbe3ea;
    text-decoration: none;
}

.Footer {
    text-align: center;
    padding: 28px 20px 40px;
    color: #64748b;
    font-size: 13px;
}


@media (max-width: 720px) {
    .Topbar {
        padding: 0 16px;
    }

    .Container {
        padding: 20px 16px 40px;
    }

    .Hero {
        padding: 22px 18px;
    }

    .Hero-title {
        font-size: 28px;
    }

    .Section {
        padding: 18px;
    }

    .Section-title {
        font-size: 21px;
    }

    .FooterActions {
        flex-direction: column;
    }

    .Button {
        width: 100%;
    }
}