/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
/*input::-ms-clear{display:none;}*/
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
/*ul li{list-style:none;}*/
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/
body{
    background: #ffffff;
    position: absolute;
    font-family: 'Open Sans', Arial, sans-serif;
}
body.lock {
    overflow: hidden;
}
body, html {
    overflow-x: hidden;
}
main{
    flex: 1;
}

.wrapper{
    background: url('../images/main-bg.webp') no-repeat center center/cover;
    height: auto;
    position: relative;
    padding:20px;
}
/*--------------------*/
.hero {
    margin-bottom: 60px;
}
.hero__container {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 70px;
    border-radius: 37px;
    border: 1px solid #E8BE73;
    background: rgba(18, 18, 15, 0.70);
}
.hero__container h2 {
    color: #FFF;
    text-align: start;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.hero__points {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
}
.hero__points p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    background: #21201C;
    border: 1px solid #F2B850;
    border-radius: 12px;
    padding: 8px 14px;
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 3px 10px rgba(246, 223, 109, 0.5);
}
.hero__points img {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: brightness(1.1) contrast(1.2);
}
.hero__container h3 {
    color: rgba(255, 255, 255, 0.80);
    text-align: start;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 645px;
}
.hero__container a {
    display: flex;
    max-width: 182px;
    width: 100%;
    padding: 13px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 2px solid #F2B850;
    background: #21201C;
    box-shadow: 0 0 20px 0 rgba(246, 223, 109, 0.50);
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hero__container a:hover {
    background: #F2B850;
    color: #12120F;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero__container {
        padding: 35px 50px;
    }
    .hero__container h2 {
        font-size: 34px;
        line-height: 1.3;
    }
    .hero__container h3 {
        font-size: 13px;
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .hero__container {
        padding: 30px 30px;
        align-items: flex-start;
    }
    .hero__container h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .hero__points {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .hero__points p {
        width: 100%;
        justify-content: flex-start;
    }
    .hero__container h3 {
        font-size: 13px;
        max-width: 100%;
    }
    .hero__container a {
        max-width: 160px;
        font-size: 15px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero{
        margin-bottom: 20px;
    }
    .hero__container {
        padding: 25px 20px;
        border-radius: 24px;
    }
    .wrapper{
        padding: 0;
    }
    .hero__container h2 {
        font-size: 21px;
        line-height: 1.4;
    }
    .hero__points p {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 10px;
    }
    .hero__points img {
        width: 18px;
        height: 18px;
    }
    .hero__container h3 {
        font-size: 10px;
        line-height: 1.5;
    }
    .hero__container a {
        max-width: 140px;
        font-size: 14px;
        padding: 10px;
    }
}

/*--------------------*/
.brands__container {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.brands__block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    border-radius: 24px;
    border: 2px solid rgba(232, 190, 115, 0.50);
    background: rgba(18, 18, 15, 0.85);
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.brands__block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(161, 110, 0, 0.25);
}
.brand-image {
    transition: transform 0.3s ease;
}
.brands__block:hover .brand-image {
    transform: scale(1.03);
}
.brands__block h2 {
    color: #F2B850;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    max-width: 260px;
    text-align: center;
    width: 100%;
}
.brands__block-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.brands__block-rating h3 {
    color: #F2B850;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.brands__block-rating span {
    color: rgb(242, 184, 80);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.4px;
}
.brands__block-cards {
    max-width: 160px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.brands__block-cards img {
    transition: transform 0.3s ease, filter 0.3s ease;
}
.brands__block-cards img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}
.brands__block a {
    max-width: 170px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-radius: 10px;
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    line-height: 22.4px;
    border: 2px solid #F2B850;
    background: #21201C;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 20px 0 rgba(246, 223, 109, 0.50);
}
.brands__block a:hover {
    background: #F2B850;
    color: #12120F;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .brands__block {
        gap: 15px;
        padding: 18px;
    }
    .brands__block h2 {
        font-size: 18px;
        line-height: 28px;
        max-width: 220px;
    }
    .brands__block-rating h3 {
        font-size: 42px;
        line-height: 42px;
    }
    .brands__block a {
        max-width: 150px;
        font-size: 16px;
        padding: 16px 0;
    }
}

@media (max-width: 900px) {
    .brands__block {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .brand-image {
        max-width: 140px;
        width: 100%;
    }
    .brands__block h2 {
        max-width: 100%;
        font-size: 18px;
    }
    .brands__block-rating {
        margin-top: 10px;
    }
    .brands__block-cards {
        margin-top: 10px;
    }
    .brands__block a {
        margin-top: 15px;
    }
}

@media (max-width: 600px) {
    .brands__container {
        gap: 15px;
    }
    .brands__block {
        padding: 16px;
        flex-direction: column;
        align-items: center;
    }
    .brand-image {
        max-width: 120px;
    }
    .brands__block h2 {
        font-size: 16px;
        line-height: 26px;
    }
    .brands__block-rating h3 {
        font-size: 36px;
        line-height: 40px;
    }
    .brands__block-cards img {
        max-height: 22px;
    }
    main{
        padding: 35px 10px;
    }
    .brands__block a {
        width: 100%;
        max-width: 200px;
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .brands__block {
        padding: 14px;
        border-radius: 18px;
    }
    .brand-image {
        max-width: 100px;
    }
    .brands__block h2 {
        font-size: 15px;
    }
    .brands__block-rating h3 {
        font-size: 30px;
    }
    .brands__block-cards {
        gap: 4px;
    }
    .brands__block a {
        font-size: 14px;
        padding: 14px 0;
    }
}

/*--------------------*/
.disclaimer {
    margin-top: 75px;
}
.disclaimer__container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 30px;
    border: 2px solid rgba(232, 190, 115, 0.5);
    background: #12120F;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.disclaimer__title h2 {
    color: #F2B850;
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
    max-width: 370px;
}
.disclaimer__text p {
    color: #E8BE73;
    text-align: start;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 625px;
}

@media (max-width: 1024px) {
    .disclaimer__container {
        padding: 45px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .disclaimer__title h2 {
        max-width: 100%;
        font-size: 28px;
        margin-bottom: 20px;
    }
    .disclaimer__text p {
        max-width: 100%;
        font-size: 15px;
        text-align: left;
    }
}
@media (max-width: 768px) {
    .disclaimer__container {
        padding: 35px 25px;
        border-radius: 24px;
    }
    .disclaimer__title h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    .disclaimer__text p {
        font-size: 14px;
        line-height: 1.6;
    }
}
@media (max-width: 480px) {
    .disclaimer__container {
        padding: 25px 20px;
        gap: 20px;
    }
    .disclaimer__title h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .disclaimer__text p {
        font-size: 13px;
        line-height: 1.5;
    }
}


/*--------------------*/
.footer {
    padding: 20px 0 20px;
    font-family: "Poppins", sans-serif;
    color: #222;
    text-align: center;
}
.footer__container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
.footer__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.footer__logo {
    transition: transform 0.2s ease;
}
.footer__logo:hover {
    transform: scale(1.05);
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}
.footer__link {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.4px; /* 160% */
    transition: color 0.2s ease;
}
.footer__link:hover {
    color: #ffaf02;
}
.footer__copy {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 600px) {
    .footer {
        padding: 30px 0 15px;
    }
    .footer__logo {
        height: 30px;
    }
    .footer__link {
        font-size: 13px;
    }
    .footer__copy {
        font-size: 12px;
    }
}
/*--------------------*/
.contact__container {
    max-width: 1160px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    transition: all 0.4s ease;
    border-radius: 24px;
    border: 2px solid rgba(232, 190, 115, 0.50);
    background: rgba(18, 18, 15, 0.85);
}
.contact__container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(171, 98, 0, 0.25);
}
.contact__title {
    color: #F2B850;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
}
.contact__subtitle {
    color: #E8BE73;
    font-size: 17px;
    text-align: center;
    max-width: 550px;
    line-height: 1.6;
}
.contact__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.contact__field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact__label {
    color: #000;
    font-weight: 600;
    font-size: 15px;
}
.contact__input,
.contact__textarea {
    width: 100%;
    border: 1.8px solid rgb(242, 184, 80);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    color: #000;
    transition: all 0.3s ease;
}
.contact__input:focus,
.contact__textarea:focus {
    outline: none;
    border-color: #b87430;
    box-shadow: 0 0 10px rgba(184, 116, 48, 0.25);
}
.contact__textarea {
    min-height: 130px;
    resize: vertical;
}
.contact__button {
    align-self: center;
    background: linear-gradient(90deg, #c48a3c 0%, #844d00 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 50px;
    cursor: pointer;
    letter-spacing: 0.5px;
    border-radius: 10px;
    border: 2px solid #F2B850;
    background: #21201C;
    box-shadow: 0 0 20px 0 rgba(246, 223, 109, 0.50);
    transition: background 0.3s ease, transform 0.3s ease;

}
.contact__button:hover {
    background: #F2B850;
    color: #12120F;
    transform: translateY(-2px);
}
.success-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.success-popup__content {
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(161, 105, 0, 0.3);
    animation: successPopupFade 0.3s ease;
    border-radius: 24px;
    border: 2px solid rgba(232, 190, 115, 0.50);
    background: rgba(18, 18, 15, 0.85);
}
.success-popup__text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.success-popup__close {
    color: #fff;
    font-size: 15px;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 2px solid #F2B850;
    background: #21201C;
    box-shadow: 0 0 20px 0 rgba(246, 223, 109, 0.50);
}
.success-popup__close:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(161, 115, 0, 0.5);
}
@keyframes successPopupFade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .contact__container {
        padding: 30px 20px;
    }
    .contact__title {
        font-size: 26px;
    }
    .contact__subtitle {
        font-size: 14px;
    }
    .success-popup__content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .contact__title {
        font-size: 22px;
    }
    .contact__input,
    .contact__textarea {
        font-size: 14px;
    }
    .success-popup__text {
        font-size: 16px;
    }
}
/*--------------------*/
.age-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.4s ease forwards;
}
.age-popup__content {
    box-shadow: 0 8px 25px rgba(161, 115, 0, 0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
    padding: 40px 30px;
    animation: scaleIn 0.4s ease forwards;
    border-radius: 24px;
    border: 2px solid rgba(232, 190, 115, 0.50);
    background: rgba(18, 18, 15, 0.85);
}
.age-popup__title {
    color: #F2B850;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}
.age-popup__text {
    color: #E8BE73;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.age-popup__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.age-popup__btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 2px solid #F2B850;
    background: #21201C;
    box-shadow: 0 0 20px 0 rgba(246, 223, 109, 0.50);
}
.age-popup__btn--confirm {
    color: #fff;
    border-radius: 10px;
    border: 2px solid #F2B850;
    background: #21201C;
    box-shadow: 0 0 20px 0 rgba(246, 223, 109, 0.50);
}
.age-popup__btn--confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(161, 129, 0, 0.6);
}
.age-popup__btn--exit {
    color: white;
    border-radius: 10px;
    border: 2px solid #F2B850;
    background: #21201C;
    box-shadow: 0 0 20px 0 rgba(246, 223, 109, 0.50);
}
.age-popup__btn--exit:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(161, 129, 0, 0.6);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
    .age-popup__content {
        padding: 30px 20px;
    }
    .age-popup__title {
        font-size: 22px;
    }
    .age-popup__text {
        font-size: 14px;
    }
    .age-popup__btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}
/*------------*/
/* ===== Cookies Popup ===== */
.cookies-popup {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    z-index: 999;
    animation: slideUp 0.4s ease forwards;
}
.cookies-popup__content {
    box-shadow: 0 6px 20px rgba(161, 110, 0, 0.25);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-radius: 30px;
    border: 2px solid rgba(232, 190, 115, 0.50);
    background: #12120F;
}
.cookies-popup__text {
    color: #E8BE73;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}
.cookies-popup__link {
    color: #F2B850;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.cookies-popup__link:hover {
    color: #7d3f00;
}
.cookies-popup__btn {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 2px solid #F2B850;
    background: #21201C;
    box-shadow: 0 0 20px 0 rgba(246, 223, 109, 0.50);
}
.cookies-popup__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(161, 129, 0, 0.5);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
@media (max-width: 600px) {
    .cookies-popup__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cookies-popup__btn {
        width: 100%;
        text-align: center;
    }
}
/*------------------------*/
.policy__container {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1.5px solid rgba(255, 204, 102, 0.3);
    box-shadow: 0 10px 45px rgba(255, 200, 120, 0.1);
    padding: 70px 60px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.policy__container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(
            circle at 30% 30%,
            rgba(255, 210, 100, 0.08),
            transparent 70%
    );
    z-index: -1;
}

.policy__container:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 55px rgba(255, 190, 80, 0.2);
}

/* 🔱 Заголовок блока */
.policy__header {
    text-align: center;
    margin-bottom: 40px;
}

.policy__title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffb84d 0%, #ffd17a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(255, 190, 90, 0.2);
}

.policy__divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ffb84d 0%, #ffd17a 100%);
    margin: 18px auto 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 200, 100, 0.3);
}

/* ⚡ Подзаголовки и текст */
.policy__subtitle {
    color: #f1b869;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: justify;
    transition: color 0.3s ease;
}

.policy__subtitle:hover {
    color: #ffd580;
}

.policy__text {
    color: #ddd;
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 25px;
    text-align: justify;
    transition: color 0.3s ease;
}

.policy__text strong {
    color: #ffcc66;
    font-weight: 700;
    position: relative;
    padding-bottom: 2px;
}

.policy__text strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 200, 80, 0.4), transparent);
    transition: all 0.3s ease;
}

.policy__text strong:hover::after {
    background: linear-gradient(90deg, rgba(255, 220, 120, 0.8), transparent);
}

/* 💡 Highlight-блок */
.policy__highlight {
    margin-top: 45px;
    padding: 35px 30px;
    background: linear-gradient(
            135deg,
            rgba(255, 200, 80, 0.08),
            rgba(255, 210, 100, 0.05)
    );
    border-left: 4px solid #ffb84d;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(255, 180, 60, 0.1);
    transition: all 0.35s ease;
}

.policy__highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 200, 100, 0.25);
    background: linear-gradient(
            135deg,
            rgba(255, 200, 80, 0.12),
            rgba(255, 220, 120, 0.08)
    );
}

.policy__highlight p {
    color: #eee;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 10px;
}

/* 🧭 Hover-анимация плавного свечения текста */
.policy__text:hover {
    color: #fff3d9;
}

/* 📱 Адаптив */
@media (max-width: 1024px) {
    .policy__container {
        padding: 50px 35px;
    }
    .policy__title {
        font-size: 34px;
    }
}
@media (max-width: 768px) {
    .policy__title {
        font-size: 28px;
    }
    .policy__text {
        font-size: 15.5px;
        line-height: 1.75;
    }
    .policy__highlight {
        padding: 25px 20px;
    }
}
@media (max-width: 480px) {
    .policy__container {
        padding: 30px 20px;
    }
    .policy__title {
        font-size: 24px;
    }
    .policy__highlight {
        border-left: 3px solid #ffb84d;
    }
}

