/* ===== УСЛОВИЯ ИСПОЛЬЗОВАНИЯ ===== */

.agreement__container {
    background: transparent;
    position: relative;
    padding: 1px;
    max-width: 980px;
    margin: 0 auto;
}

.agreement__inner {
    text-align: left;
    line-height: 16px;
    font-size: 16px;
    margin: 0 auto;
    padding: 5px 10px;
    max-width: 980px;
    background: transparent;
    color: #ffffff;
}

.agreement__inner h1 {
    text-align: center;
    line-height: 18px;
    font-size: 20px;
}

.agreement__title {
    font-size: 28px;
    font-weight: 700;
    color: #ffb50e;
    text-align: center;
    margin-bottom: 30px;
}

.agreement__text {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.8;
}

.agreement__text strong {
    color: #ffb50e;
    font-size: 17px;
}

.agreement__text a {
    color: #ffb50e;
    text-decoration: none;
}

.agreement__text a:hover {
    text-decoration: underline;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .agreement__title {
        font-size: 22px;
    }

    .agreement__text {
        font-size: 14px;
        line-height: 1.7;
    }

    .agreement__text strong {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .agreement__title {
        font-size: 18px;
    }

    .agreement__text {
        font-size: 13px;
        line-height: 1.6;
    }

    .agreement__text strong {
        font-size: 14px;
    }

    .agreement__inner {
        padding: 5px;
    }
}