@font-face {
    font-family: 'Inter';

    src: url("./assets/fonts/Inter.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;

    font-display: swap;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;

    font-family: 'Inter', sans-serif;

    background-color: #eaeaea;
}

body {
    color: #111;
}

.policy-page {
    width: 100%;
    min-height: 100vh;

    padding: 30px 20px;
}

.policy-card {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 45px;

    background-color: white;

    border-radius: 16px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.10);
}

.policy-header {
    margin-bottom: 40px;

    padding-bottom: 30px;

    border-bottom: 1px solid #e5e5e5;
}

.policy-header h1 {
    margin: 0 0 20px;

    font-size: 32px;
    line-height: 1.2;
}

.organization {
    font-weight: 600;
}

.approval {
    margin-top: 30px;
}

.edition {
    margin: 0;

    color: #666;
}

section {
    margin-bottom: 35px;
}

section h2 {
    margin: 0 0 18px;

    font-size: 22px;
    line-height: 1.3;
}

section h3 {
    margin: 24px 0 12px;

    font-size: 18px;
}

section p {
    margin: 0 0 15px;

    font-size: 16px;
    line-height: 1.65;
}

section ul,
section ol {
    margin: 0 0 15px;

    padding-left: 25px;
}

section li {
    margin-bottom: 8px;

    font-size: 16px;
    line-height: 1.5;
}

a {
    color: #567cee;
}

a:hover {
    color: #4669d1;
}

.download-block {
    margin-top: 45px;

    padding-top: 30px;

    border-top: 1px solid #e5e5e5;

    text-align: center;
}

.download-button {
    display: inline-block;

    padding: 13px 24px;

    border-radius: 9px;

    color: white;
    background-color: #567cee;

    font-size: 16px;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.download-button:hover {
    color: white;

    background-color: #4669d1;

    transform: translateY(-1px);
}

@media (max-width: 700px) {

    .policy-page {
        padding: 15px;
    }

    .policy-card {
        padding: 25px 20px;

        border-radius: 14px;
    }

    .policy-header h1 {
        font-size: 26px;
    }

    section h2 {
        font-size: 20px;
    }

    section p,
    section li {
        font-size: 15px;
    }
}