/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

@font-face {
    font-family: PoppinsB;
    src: url('../faRsha-fonts/faRsha-poppinsB.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: PoppinsSM;
    src: url('../faRsha-fonts/faRsha-poppinsSM.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: PoppinsR;
    src: url('../faRsha-fonts/faRsha-poppinsR.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: PoppinsEB;
    src: url('../faRsha-fonts/faRsha-poppinsEB.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

.body_faRsha {
    background-color: #0C0800DB;
    color: #ffffff;
    overflow-x: hidden;
    font-family: PoppinsR, sans-serif;
    line-height: 1.6;
}

.container_faRsha {
    max-width: 1240px;
    margin: 0 auto;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp_faRsha {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse_faRsha {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.reveal_faRsha {
    opacity: 0;
    transition: 0.8s ease-out;
}

.reveal_faRsha.active_faRsha {
    opacity: 1;
    animation: fadeInUp_faRsha 0.8s ease-out forwards;
}

/* --- HEADER --- */
.header_faRsha {
    background: #00000070;
    padding: 15px 16px;
    top: 0;
    z-index: 100;
    transition: 0.3s;
}

.header_faRsha__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_faRsha {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav_faRsha__list {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav_faRsha__link {
    text-decoration: none;
    font-family: PoppinsSM;
    font-size: 16px;
    color: #FFFFFFCC;
    transition: 0.3s;
    position: relative;
}

.nav_faRsha__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #FFBC4F;
    transition: 0.3s;
}

.nav_faRsha__link:hover {
    color: #fff;
}

.nav_faRsha__link:hover::after {
    width: 100%;
}

/* --- BUTTONS --- */
.btn_faRsha {
    padding: 12px 40px;
    border-radius: 8px;
    font-family: PoppinsSM;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-align: center;
}

.btn_faRsha--primary {
    background: linear-gradient(180deg, #BB8013 0%, #FFBC4F 50%, #BB8013 100%);
    color: #080913;
}

.btn_faRsha--primary:hover {
    transform: translateY(-2px);
}

.btn_faRsha--outline {
    background: transparent;
    border: 1px solid #F5B347;
    color: #F5B347;
    box-shadow: 0px 2px 6px 0px #06071080;
}

.btn_faRsha--outline:hover {
    background: #F5B347;
    transform: translateY(-2px);
    color: #080913;
}

/* --- HERO & BACKGROUNDS --- */
.hero_faRsha {
    padding: 50px 16px;
    text-align: center;
}

.hero-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
}

.section-top_faRsha {
    font-family: PoppinsSM;
    font-size: 26px;
    color: #F5B347;
}

.section-top_faRsha2 {
    font-family: PoppinsSM;
    font-size: 20px;
    color: #F5B347;
    text-align: center;
}

.tc-tx {
    text-align: center;
}

.hero_faRsha__title {
    font-family: PoppinsB;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
    text-transform: capitalize;
}

.hero_faRsha__desc {
    font-family: PoppinsR;
    font-size: 18px;
    color: #FFFFFFCC;
    text-align: center;
}

.backfon1 {
    background: url('../faRsha-img/faRsha-back1.webp') center/cover no-repeat;
}

/* --- CARDS & GRID --- */
.section-head_faRsha {
    display: flex;
    margin-bottom: 40px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-head_faRsha2 {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-head_faRsha-ab {
    display: flex;
    margin-bottom: 40px;
    gap: 40px;
    flex-direction: column;
}

.section-top_faRsha2-ab {
    font-family: PoppinsSM;
    font-size: 26px;
    color: #F5B347;
}

.section-title_faRsha {
    font-family: PoppinsB;
    font-size: 30px;
    text-transform: capitalize;
    line-height: 120%;
    text-align: center;
}

.section-text_faRsha {
    font-size: 16px;
    font-family: PoppinsR;
    color: #FFFFFFCC;
}

.benefits_faRsha,
.steps_faRsha,
.cta_faRsha {
    padding: 70px 16px;
}

.cta_faRsha {
    background: #00000070;
}

.benefits_faRsha__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
}

.card_faRsha {
    border: 1px solid #674300;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    background: radial-gradient(100% 100% at 0% 0%, #2D2210 0%, #100C06 100%);
    box-shadow: 0px 2px 6px 0px #09080D26;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
}

.card_faRsha:hover {
    transform: translateY(-10px);
    border-color: #c0173d;
    box-shadow: 0 10px 20px rgba(192, 23, 61, 0.2);
}

.card_faRsha img {
    width: 60px;
    transition: 0.3s;
}

.card_faRsha:hover img {
    transform: rotate(5deg) scale(1.1);
}

.steps_faRsha__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
}

.step-card_faRsha {
    border: 1px solid #674300;
    box-shadow: 0px 2px 6px 0px #09080D26;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    background: #0F0B05;
}

.step-card_faRsha:hover {
    background: rgba(60, 71, 148, 0.2);
    border-color: #A1ADFF;
}

.step-card_faRsha__num {
    font-family: PoppinsEB;
    font-size: 96px;
    text-transform: uppercase;

    /* ВАЖНО: убираем заливку */
    color: transparent;
    background: transparent;

    /* Контур текста */
    -webkit-text-stroke: 1px #F5B347;
    text-stroke: 1px #F5B347;

    /* Тень как на скрине */
    text-shadow: 0px 2px 6px rgba(6, 7, 16, 0.5);

    line-height: 1;
    display: block;
    padding: 0;
    margin: 0;
}

/* --- FORMS & MODALS (FIXED STYLES) --- */
.overlay_faRsha {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.overlay_faRsha.active {
    display: flex;
    animation: fadeIn_faRsha 0.3s ease;
}

@keyframes fadeIn_faRsha {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-wrapper_faRsha {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.modal-close_faRsha {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.auth-card_faRsha {
    background: radial-gradient(100% 100% at 0% 0%, #2D2210 0%, #100C06 100%);
    border: 1px solid #674300;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0px 2px 6px 0px #09080D26;
    transform: scale(0.9);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.overlay_faRsha.active .auth-card_faRsha {
    transform: scale(1);
}

.auth-card_faRsha__title {
    font-family: PoppinsSM;
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}

.input_faRsha {
    width: 100%;
    background-color: #0F0B05;
    border: 1px solid #674300;
    box-shadow: 0px 2px 6px 0px #09080D26;
    border-radius: 8px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: PoppinsR;
    font-size: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.input_faRsha:focus {
    border-color: #c0173d;
    box-shadow: 0 0 10px rgba(192, 23, 61, 0.15);
}

.input_faRsha::placeholder {
    color: #FFFFFF;
}

.btn-submit_faRsha {
    width: 100%;
    background-color: #c0173d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: PoppinsSM;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit_faRsha:hover {
    background-color: #9b1231;
    transform: translateY(-2px);
}

.auth-switch_faRsha {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #fff;
}

.auth-switch_faRsha button {
    background: none;
    border: none;
    color: #fff;
    font-family: PoppinsB;
    cursor: pointer;
    padding-left: 5px;
}

.auth-switch_faRsha button:hover {
    text-decoration: underline;
}

.form-msg_faRsha {
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    min-height: 20px;
    font-family: PoppinsSM;
}

/* --- AGE & FOOTER --- */
.age-check_faRsha {
    position: fixed;
    inset: 0;
    background: #050811;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.age-check_faRsha__content {
    text-align: center;
    padding: 30px;
    animation: fadeInUp_faRsha 0.6s ease;
}

.age-check_faRsha h2 {
    font-family: PoppinsEB;
    font-size: 32px;
    margin-bottom: 15px;
}

.footer_faRsha {
    padding: 50px 16px 50px;
    background: #070707;
}

.footer_faRsha__top {
    display: flex;
    margin-bottom: 40px;
    gap: 40px;
}

.footer_faRsha__list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_faRsha__link {
    font-family: PoppinsSM;
    font-size: 16px;
    text-align: center;
    color: #F5B347;
    text-decoration: none;
    transition: 0.3s;
}

.footer_faRsha__link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(161, 173, 255, 0.5);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .burger_faRsha {
        display: flex;
    }

    .nav_faRsha {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #050811;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        display: flex;
        z-index: 100;
    }

    .nav_faRsha.active {
        right: 0;
    }

    .nav_faRsha__list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .benefits_faRsha__grid,
    .steps_faRsha__grid {
        grid-template-columns: 1fr;
    }

    .header_faRsha__auth {
        flex-direction: column;
        width: 80%;
    }

    .footer_faRsha__top {
        flex-direction: column;
    }
}

body.lock_faRsha {
    overflow: hidden;
}

.age-check_faRsha__content p {
    padding-bottom: 20px;
}

.header_faRsha__auth {
    display: flex;
    align-items: center;
    gap: 20px;
}

.works-cont {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.step-card_faRsha {
    display: flex;
    gap: 14px;
    align-items: center;
}

.step-card_faRsha h2 {
    font-family: PoppinsSM;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-transform: capitalize;
    padding-bottom: 10px;
    color: #F5B347;
}

.step-card_faRsha p {
    font-family: PoppinsR;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFFCC;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-block button {
    margin-top: 20px;
}

.footer_faRsha__bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer_faRsha__bottom p {
    font-family: PoppinsR;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFFCC;
}

.age_faRsha {
    font-family: PoppinsB;
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    text-align: center;
    text-transform: capitalize;
    color: #F5B347;
}

.footer_faRsha__info {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_faRsha__info p {
    font-family: PoppinsR;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFFCC;
}

.footer_faRsha__info2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_faRsha__info2 h2 {
    font-family: PoppinsSM;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    text-transform: capitalize;
}

.footer_faRsha__info2 p {
    color: #FFFFFFCC;
}

.card_faRsha h2 {
    font-family: PoppinsSM;
    font-size: 20px;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.card_faRsha p {
    font-family: PoppinsR;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFFCC;
}

@media(max-width: 666px) {
    .section-head_faRsha {
        flex-direction: column;
        gap: 14px;
    }

    .works-cont {
        flex-direction: column;
    }

    .header_faRsha {
        padding: 15px 16px;
    }

    .hero_faRsha {
        padding: 40px 16px;
    }

    .section-top_faRsha {
        font-size: 20px;
    }

    .hero_faRsha__title {
        font-size: 36px;
    }

    .hero_faRsha__desc {
        font-size: 16px;
    }

    .benefits_faRsha,
    .steps_faRsha,
    .cta_faRsha {
        padding: 40px 16px;
    }

    .section-top_faRsha2 {
        font-size: 18px;
    }

    .section-title_faRsha h2 {
        font-size: 28px;
    }

    .section-text_faRsha p {
        font-size: 14px;
    }

    .card_faRsha {
        padding: 16px;
    }

    .card_faRsha h2 {
        font-size: 18px;
    }

    .card_faRsha p {
        font-size: 14px;
    }

    .step-card_faRsha__num {
        font-size: 64px;
    }

    .step-card_faRsha h2 {
        font-size: 18px;
    }

    .step-card_faRsha p {
        font-size: 14px;
    }

    .section-title_faRsha {
        font-size: 26px;
    }

    .footer_faRsha__list {
        justify-content: center;
    }

    .step-card_faRsha {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
        text-align: center;
    }
}

/* --- BURGER STYLES --- */
.burger_faRsha {
    display: none;
    /* Скрыт на десктопе */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    /* Поверх всего */
    padding: 0;
}

.burger-line_faRsha {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Анимация превращения в крестик (когда у кнопки класс active) */
.burger_faRsha.active .burger-line_faRsha:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.burger_faRsha.active .burger-line_faRsha:nth-child(2) {
    opacity: 0;
}

.burger_faRsha.active .burger-line_faRsha:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --- MOBILE NAVIGATION --- */
@media (max-width: 992px) {
    .burger_faRsha {
        display: flex;
        /* Показываем на мобилках */
    }

    .nav_faRsha {
        position: fixed;
        top: 0;
        right: -100%;
        /* Спрятан за экраном справа */
        width: 100%;
        height: 100vh;
        background-color: #070814;
        /* Темный фон меню */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 40px;
    }

    /* Когда меню открыто */
    .nav_faRsha.active {
        right: 0;
    }

    .nav_faRsha__list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav_faRsha__link {
        font-size: 24px;
        /* Увеличиваем ссылки для удобства нажатия */
    }

    .header_faRsha__auth {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .btn_faRsha {
        width: 100%;
    }
}

.ab-p {
    padding-bottom: 20px;
    font-family: PoppinsR;
    font-size: 18px;
    line-height: 130%;
}

.cont-ab {
    display: flex;
    gap: 40px;
}

.benefits_faRsha__grid-ab {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.descr-ab-cont {
    max-width: 600px;
}

.ab-t {
    font-family: PoppinsSM;
    font-size: 26px;
    line-height: 120%;
    text-align: center;
    color: #F5B347;
}

.ab-gr {
    padding-bottom: 20px;
}

.ab-p-down {
    font-family: PoppinsR;
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 20px;
    color: #FFFFFFCC;
}

.contact-ab {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 40px;
}

.section-title_faRsha-ab-h {
    font-family: PoppinsB;
    font-size: 30px;
    line-height: 120%;
    text-transform: capitalize;
    color: #FFFFFF;
}

/* --- CONTACT SECTION --- */
.contact_faRsha {
    padding-top: 70px;
}

.contact-form-block_faRsha {
    width: 100%;
    max-width: 715px;
}

.contact-wrapper_faRsha {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 16px 50px 16px;
}

.con-in {
    text-align: center;
}

.contact-form_faRsha {
    display: flex;
    flex-direction: column;
}

.textarea_faRsha {
    min-height: 150px;
    resize: none;
}

.checkbox-group_faRsha {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0;
}

.checkbox-group_faRsha input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #c0173d;
}

.checkbox-group_faRsha label {
    font-size: 14px;
    color: #FFFFFFCC;
    cursor: pointer;
    line-height: 1.4;
}

.w-100_faRsha {
    width: 100%;
}

/* --- CONTACT INFO --- */
.contact-info-list_faRsha {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.info-icon_faRsha {
    display: flex;
}

.info-item_faRsha {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.info-item_faRsha p {
    font-family: PoppinsR;
    font-size: 16px;
    color: #ffffff;
}

.ab-sec {
    padding-left: 16px;
    padding-right: 16px;
}

.header_faRsha__auth2 {
    display: none;
}

@media (max-width: 992px) {
    .contact-wrapper_faRsha {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header_faRsha__auth {
        display: none;
    }

    .header_faRsha__auth2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}


@media (max-width: 820px) {
    .info-item_faRsha {
        flex-direction: row;
    }

    .contact-info-list_faRsha {
        padding: 0px 16px;
    }

    .contact-form-block_faRsha {
        max-width: 100%;
    }

    .cont-ab {
        display: flex;
        gap: 40px;
        flex-direction: column;
    }

    .logo_faRsha {
        padding-right: 0px !important;
    }
}



/* --- POLICY PAGE STYLES --- */
.policy-hero_faRsha {
    padding: 60px 0;
    text-align: left;
}

.policy-content_faRsha {
    padding: 60px 0 100px 0;
}

.policy-text_faRsha {
    max-width: 900px;
}

.policy-text_faRsha h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    word-break: break-all;
}

.policy-text_faRsha ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.policy-text_faRsha ul li {
    margin-bottom: 10px;
}

.policy-text_faRsha strong {
    color: #fff;
    font-family: PoppinsB;
}

/* Переопределение для адекватного отображения списков */
.policy-text_faRsha .ab-p-down {
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    .policy-hero_faRsha {
        padding: 40px 0;
    }

    .ab-t {
        font-size: 32px;
    }
}

/* --- COOKIE POPUP --- */
.cookie-popup_faRsha {
    position: fixed;
    bottom: 30px;
    left: 5%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #070814;
    border: 1px solid #3C4794;
    border-radius: 16px;
    padding: 20px 30px;
    z-index: 1999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.cookie-popup_faRsha__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-popup_faRsha p {
    font-family: PoppinsR;
    font-size: 14px;
    color: #FFFFFFCC;
    line-height: 1.4;
}

.cookie-link_faRsha {
    color: #F97316;
    text-decoration: underline;
}

.accept-cookie_faRsha {
    white-space: nowrap;
    padding: 10px 25px;
    font-size: 14px;
}

.ab-title-desc {
    font-family: PoppinsB;
    font-size: 30px;
    line-height: 120%;
    text-transform: capitalize;
    color: #FFFFFF;
    padding-bottom: 40px;
}

@media (max-width: 666px) {
    .cookie-popup_faRsha__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-popup_faRsha {
        bottom: 15px;
        padding: 15px;
    }

    .section-top_faRsha2-ab {
        font-size: 20px;
    }

    .section-title_faRsha {
        font-size: 32px;
    }

    .ab-t {
        font-size: 20px;
    }

    .section-title_faRsha-ab-h {
        font-family: PoppinsB;
        font-size: 30px;
    }

    .ab-title-desc {
        font-family: PoppinsB;
        font-size: 20px;
        line-height: 120%;
        text-transform: capitalize;
        color: #FFFFFF;
        padding-bottom: 20px;
    }
}

.logo_faRsha {
    padding-right: 130px;
}

.policy-content_faRsha>.container_faRsha {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;

    /* Заданные вами стили */
    font-family: PoppinsR;
    font-style: normal;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #FFFFFFCC;
}

.policy-content_faRsha h1,
.policy-content_faRsha h2,
.policy-content_faRsha p,
.policy-content_faRsha ul {
    margin-bottom: 20px;
}

.policy-content_faRsha ul {
    list-style-type: disc;
    padding-left: 20px;
}

.container_faRsha strong {
    color: #FFFFFF;
    font-weight: 600;
}

.ab-t {
    font-size: 32px;
    margin-bottom: 30px;
    color: #F5B347;
}


/* --- RESPONSIBLE GAMING STYLES --- */
.responsible_faRsha {
    padding: 70px 0;
}

.responsible_faRsha__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.responsible_faRsha__content {
    flex: 1;
}

.responsible_faRsha__list {
    margin-top: 20px;
    list-style: disc;
    padding-left: 20px;
    color: #FFFFFFCC;
}

.responsible_faRsha__list li {
    margin-bottom: 10px;
}

.responsible_faRsha__image {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
}

.responsible_faRsha__image img {
    max-width: 100%;
    height: auto;
}

/* --- TREATMENT CENTERS LOGO GRID --- */
.centers_faRsha {
    padding: 70px 0;
}

.centers_faRsha__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.pd {
    padding-bottom: 20px;
}

.centers_faRsha__item {
    flex: 0 1 287px;
    /* Размер ячейки логотипа */
}

.centers_faRsha__link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    /* Белый фон для логотипов */
    padding: 25px;
    border-radius: 12px;
    height: 110px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.centers_faRsha__link:hover {
    transform: translateY(-5px);
    border-color: #c0173d;
    box-shadow: 0 10px 20px rgba(192, 23, 61, 0.2);
}

.centers_faRsha__link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    /* Делаем ч/б для стиля */
    transition: 0.3s;
}

.centers_faRsha__link:hover img {
    filter: grayscale(0);
    /* Цветной при наведении */
}

@media (max-width: 992px) {
    .responsible_faRsha__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .centers_faRsha__grid {
        gap: 10px;
        margin-top: 20px;
    }

    .centers_faRsha__item {
        flex: 0 1 45%;
    }
}

@media (max-width: 666px) {
    .centers_faRsha__item {
        flex: 0 1 48%;
    }

    .responsible_faRsha,
    .centers_faRsha {
        padding: 40px 0;
    }

    .centers_faRsha__link {
        height: 50px;
        padding: 9px;
    }
}

.footer_faRsha__top {
    margin-top: 40px;
}