/* --- Base Page Style --- */
body {
    margin: 0;
    padding: 0;
    background: #ffffff; /* Белый фон */
    font-family: "Inter", Arial, sans-serif;
    color: #222;
    line-height: 1.7;
}

/* --- Layout Containers --- */
.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* --- Header --- */
.header {
    background: #0a0000;
    border-bottom: 1px solid #e1e1e1;
    padding: 40px 20px;
    text-align: center;
}

.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0660ce;
    font-weight: 700;
}

.header p {
    font-size: 18px;
    color: #f5f5f5;
}

/* --- Content --- */
section h2 {
    font-size: 26px;
    margin-top: 40px;
    color: #111;
    font-weight: 700;
}

section p {
    font-size: 17px;
    margin-top: 10px;
    color: #333;
}

/* --- Footer --- */
.footer {
    background: #070707;
    border-top: 1px solid #e1e1e1;
    padding: 30px 10px;
    margin-top: 60px;
    text-align: center;
}

.footer p {
    margin: 0;
    color: #f5f5f5;
    font-size: 15px;
}

.footer-links {
    margin-top: 12px;
}

.footer-links a {
    color: #fffefe;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 600px) {

    body {
        font-size: 16px;
        line-height: 1.75;
    }

    .header {
        padding: 30px 15px;
    }

    .header h1 {
        font-size: 28px;
    }

    .header p {
        font-size: 16px;
    }

    section h2 {
        font-size: 22px;
    }

    section p {
        font-size: 16px;
    }

    /* Footer mobile layout */
    .footer-links a {
        display: block;
        margin: 8px 0;
        font-size: 16px;
    }
}

