@media (min-width: 340px) and (max-width: 767px) {
    .container {
        width: 345px !important;
    }
}
@media (max-width: 1023px) {
    .h1-caption-style {
        font-size: 42px;
    }
    .mobile_man{
        margin-top: 13px;
    }
    .form_desc {
        margin-top: 18px;
    }

    .form-info-style {
        margin-top: 13px;
    }
    .form-info-style .mobile-fallback-text {
        display: block;
        letter-spacing: -0.7px;
    }
    .main-form .btn {
        margin: -2px 0px 0px 2px;
    }
}
@media (min-width: 1024px) {
    .h1-caption-style{
        font-weight: 700;
    }
    .first_screen {
        margin-top: 82px;
    }
    .big_man_wrapper {
        display: block;
        position: absolute;
        top: -83px;
        right: -208px;
    }
    .big-man-display {
        display: block;
        width: 882px;
        height: 827px;
        z-index: 0;
    }
    .form_desc{
        letter-spacing: unset;

    line-height: 130%;
    }
    .main-form {
        background-image: url(../img/form.svg);
        width: 550px;
        height: 100px;
        max-width: unset;
    }
}
.col-h1{
z-index: 9999;
}

/* Explore Button Styles */
.explore-button {
        position: absolute;
        bottom: -100px;
        right: 47%;
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
        gap: 0;
        background: none;
        border: none;
        cursor: pointer;
        color: #FFFFFF;
        font-family: "Graphik LCG", sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.32em;
        letter-spacing: -0.25%;
        text-align: center;
        text-decoration: none;
        width: 74px;
        height: 48px;
        z-index: 10;
}

.explore-button-text {
    margin-bottom: 0;
}

.explore-button-icon {
    width: 24px;
    height: 24px;
    margin-top: 0;
}

@media (max-width: 768px) {
    .explore-button {
        display: none;
    }
}

/* Essays Section Styles */
.essays_section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.essays_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.essays_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #EA53D3;
}

.essays_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
}

.essays_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F8F9F9;
    width: 1062px;
    max-width: 100%;
}

.essays_cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.essays_card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.essays_card_image {
    width: 100%;
    height: 202px;
    background: #333;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.essays_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.essays_card_content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.essays_card_date {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #AAABB1;
}

.essays_card_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
}

.essays_card_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #AAABB1;
}

.essays_cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.essays_cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.essays_cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .essays_section {
        padding: 80px 0;
        margin-top: 40px;
    }
    
    .essays_description {
        width: 100%;
    }
    
    .essays_cards {
        flex-direction: row;
    }
}

@media (max-width: 1023px) {
    .essays_section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .essays_subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .essays_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .essays_description {
        font-size: 15px;
        line-height: 1.47em;
        width: 100%;
        text-align: left;
    }
    
    .essays_cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .essays_card {
        gap: 16px;
    }
    
    .essays_card_image {
        height: 180px;
    }
    
    .essays_card_date {
        font-size: 12px;
        line-height: 1.67em;
        letter-spacing: -0.5%;
    }
    
    .essays_card_title {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .essays_card_subtitle {
        font-size: 15px;
        line-height: 1.47em;
    }
    
    .essays_cta {
        width: 100%;
        font-size: 16px;
    }
}

/* News Section Styles */
.news_section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.news_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.news_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #EA53D3;
}

.news_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
}

.news_content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.news_main {
    display: flex;
    gap: 24px;
    width: 100%;
}

.news_main_image {
    width: 588px;
    height: 354px;
    background: #333;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.news_main_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_main_text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
    flex: 1;
}

.news_main_date {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #E8E9E3;
}

.news_main_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25em;
    color: #FFFFFF;
}

.news_main_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F8F9F9;
}

.news_cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.news_card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.news_card_image {
    width: 100%;
    height: 164px;
    background: #333;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.news_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_card_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news_card_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
}

.news_card_date {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #B3B3B3;
}

.news_cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.news_cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.news_cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .news_section {
        padding: 80px 0;
    }
    
    .news_main {
        flex-direction: row;
    }
    
    .news_main_text {
        padding: 0;
    }
    
    .news_cards {
        flex-direction: row;
    }
}

@media (max-width: 1023px) {
    .news_section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .news_subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .news_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .news_content {
        gap: 24px;
    }
    
    .news_main {
        flex-direction: column;
        gap: 12px;
    }
    
    .news_main_image {
        height: 212px;
        width: 100%;
    }
    
    .news_main_text {
        gap: 10px;
        padding: 0;
    }
    
    .news_main_date {
        font-size: 12px;
        line-height: 1.3em;
        letter-spacing: 0.01em;
        color: #AAABB1;
    }
    
    .news_main_title {
        font-size: 24px;
        line-height: 1.33em;
    }
    
    .news_main_description {
        font-size: 15px;
        line-height: 1.47em;
    }
    
    .news_cards {
        flex-direction: column;
        gap: 16px;
    }
    
    .news_card {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }
    
    .news_card_image {
        width: 140px;
        height: auto;
        flex-shrink: 0;
    }
    
    .news_card_content {
        gap: 8px;
    }
    
    .news_card_title {
        font-size: 15px;
        line-height: 1.47em;
        font-weight: 500;
    }
    
    .news_card_date {
        font-size: 12px;
        line-height: 1.67em;
        letter-spacing: -0.5%;
    }
    
    .news_card + .news_card::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .news_card {
        position: relative;
        padding-top: 16px;
    }
    
    .news_card:first-child {
        padding-top: 0;
    }
    
    .news_card:first-child::before {
        display: none;
    }
    
    .news_cta {
        width: 100%;
        font-size: 16px;
    }
}

/* Articles Section Styles */
.articles_section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.articles_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.articles_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #EA53D3;
}

.articles_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
}

.articles_cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.articles_card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.articles_card_image {
    width: 100%;
    height: 220px;
    background: #333;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.articles_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articles_card_content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.articles_card_date {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #AAABB1;
    /* margin-top: 16px; */
}

.articles_card_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
}

.articles_card_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #AAABB1;
}

.articles_cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.articles_cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.articles_cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .articles_section {
        padding: 80px 0;
    }
    
    .articles_cards {
        flex-direction: row;
    }
}

@media (max-width: 1023px) {
    .articles_section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .articles_subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .articles_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .articles_cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .articles_card {
        gap: 16px;
    }
    
    .articles_card_image {
        height: 200px;
    }
    
    .articles_card_date {
        font-size: 12px;
        line-height: 1.67em;
        letter-spacing: -0.5%;
    }
    
    .articles_card_title {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .articles_card_subtitle {
        font-size: 15px;
        line-height: 1.47em;
    }
    
    .articles_cta {
        width: 100%;
        font-size: 16px;
    }
}

/* Services Section Styles */
.services_section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.services_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.services_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #EA53D3;
}

.services_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
}

.services_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F8F9F9;
    width: 1062px;
    max-width: 100%;
}

.services_content {
    display: flex;
    gap: 32px;
    width: 100%;
}

.services_cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.services_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: #202020;
    border-radius: 8px;
    flex: 1;
}

.services_card_header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.services_card_logo {
    width: 158px;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.services_card_logo_img {
    width: 158px;
    height: 90px;
    object-fit: cover;
}

.services_card_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.services_card_name {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
}

.services_card_tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: fit-content;
}

.services_card_tag_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.services_card_rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services_card_rating_score {
    display: flex;
    align-items: center;
    gap: 3px;
}

.services_card_rating_number {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FFFFFF;
}

.services_card_star {
    width: 16px;
    height: 16px;
    margin-top: -2px;
    fill: #FF781D;
}

.services_card_reviews {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FFFFFF;
}

.services_card_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.57em;
    color: #F8F9F9;
    width: 100%;
    margin-top: 16px;
}

.services_card_button {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: 2px solid rgba(231, 231, 232, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;

    margin-top: 16px;
}

.services_card_button_content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    width: 100%;
}

.services_card_button_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FCE3F0;
}

.services_card_button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.services_cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.services_cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.services_cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .services_section {
        padding: 80px 0;
    }
    
    .services_content {
        flex-direction: column;
    }
    
    .services_cards {
        flex-direction: row;
    }
}

@media (max-width: 1023px) {
    .services_section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .services_subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .services_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .services_description {
        font-size: 15px;
        line-height: 1.47em;
        width: 100%;
        text-align: left;
    }
    
    .services_content {
        gap: 0;
    }
    
    .services_cards {
        flex-direction: column;
        gap: 16px;
    }
    
    .services_card {
        height: 266px;
        justify-content: space-between;
        padding: 16px;
    }
    
    .services_card_header {
        gap: 16px;
    }
    
    .services_card_logo {
        width: 100%;
        height: auto;
    }
    
    .services_card_name {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .services_card_description {
        font-size: 15px;
        line-height: 1.47em;
    }
    
    .services_cta {
        width: 100%;
        font-size: 16px;
    }
}

/* Affiliate Program Section Styles */
.affiliate_section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.affiliate_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.affiliate_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #EA53D3;
}

.affiliate_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
}

.affiliate_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F8F9F9;
    width: 1062px;
    max-width: 100%;
}

.affiliate_cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.affiliate_card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #202020;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0px 4px 16px 0px rgba(6, 6, 20, 0.1);
    flex: 1;
    position: relative;
    height: auto;
}

@media (min-width: 1024px) {
    .affiliate_card {
        height: 116px!important;
        flex: unset;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    
    /* Десктопная версия - скрываем мобильные элементы */
    .affiliate_card_rating_section {
        display: contents;
    }
    
    .affiliate_card_logo {
        width: 158px;
        height: 84px;
        margin: 0;
    }
    
    .affiliate_card_info {
        flex-direction: column;
        justify-content: space-between;
        gap: 12px;
        flex: 0 0 auto;
        width: auto;
    }
    
    .affiliate_card_name {
        font-size: 18px;
        line-height: 1.44em;
        width: 152px;
    }
    
    .affiliate_card_rating {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .affiliate_card_rating_score {
        gap: 3px;
    }
    
    .affiliate_card_rating_number {
        font-size: 14px;
        font-weight: 500;
    }
    
    .affiliate_card_reviews {
        font-size: 14px;
        font-weight: 500;
    }
    
    /* Показываем вертикальные разделители на десктопе */
    .affiliate_card_divider {
        display: block;
        width: 0;
        height: 79px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Скрываем горизонтальные разделители на десктопе */
    .affiliate_card_divider_horizontal {
        display: none;
    }
    
    /* Скрываем мобильные элементы на десктопе */
    .affiliate_card_details:not(.affiliate_card_content .affiliate_card_details) {
        display: none;
    }
    
    .affiliate_card_description:not(.affiliate_card_content .affiliate_card_description) {
        display: none;
    }
    
    .affiliate_card_button:not(.affiliate_card_content + .affiliate_card_divider + .affiliate_card_button) {
        display: none;
    }
    
    /* Десктопная структура контента */
    .affiliate_card_content {
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex: 1;
        min-width: 0;
    }
    
    .affiliate_card_description {
        font-size: 14px;
        line-height: 1.57em;
        color: #FFFFFF;
    }
    
    .affiliate_card_details {
        justify-content: flex-start;
    }
    
    .affiliate_card_detail {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.3em;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #AAABB1;
    }
    
    .affiliate_card_button {
        width: 178px;
        height: 48px;
        padding: 12px 20px;
        flex-shrink: 0;
    }
    
    .affiliate_card_button_text {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.57em;
        letter-spacing: -0.5%;
        color: #FCE3F0;
    }
    
    .affiliate_card_content + .affiliate_card_divider {
        display: none;
    }
}

.affiliate_card_logo {
    width: 158px;
    height: 84px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.affiliate_card_logo_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.affiliate_card_label {
    position: absolute;
    top: 8px;
    left: 0;
    width: 129px;
    height: 25px;
    background: linear-gradient(90deg, rgba(255, 207, 70, 1) 0%, rgba(255, 214, 97, 1) 28%, rgba(254, 219, 129, 1) 54%, rgba(247, 202, 85, 1) 75%, rgba(242, 185, 44, 1) 100%, rgba(237, 173, 5, 1) 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliate_card_label_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000000;
}

.affiliate_card_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    flex: 0 0 auto;
    width: auto;
}

.affiliate_card_name {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
    width: 152px;
}

.affiliate_card_rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.affiliate_card_rating_score {
    display: flex;
    align-items: center;
    gap: 3px;
}




.affiliate_card_rating_number {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FFFFFF;
}

.affiliate_card_star {
    width: 16px;
    height: 16px;
    fill: #FF781D;
margin-top: -2px;
}

.affiliate_card_reviews {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FFFFFF;
}

.affiliate_card_divider {
    width: 0;
    height: 79px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.affiliate_card_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.affiliate_card_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.57em;
    color: #FFFFFF;
}

.affiliate_card_details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.affiliate_card_detail {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #AAABB1;
}

.affiliate_card_detail_separator {
    width: 3px;
    height: 3px;
    background: #AAABB1;
    border-radius: 50%;
}

.affiliate_card_button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 178px;
    height: 46px;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid rgba(231, 231, 232, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.affiliate_card_button_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FCE3F0;
}

.affiliate_card_button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.affiliate_cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.affiliate_cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.affiliate_cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .affiliate_section {
        padding: 80px 0;
    }
    
    .affiliate_cards {
        flex-direction: column;
    }
}

@media (max-width: 1023px) {
    .affiliate_section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .affiliate_subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .affiliate_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .affiliate_description {
        font-size: 15px;
        line-height: 1.47em;
        width: 100%;
        text-align: left;
    }
    
    .affiliate_cards {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 0 16px;
        margin: 0 -16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .affiliate_cards::-webkit-scrollbar {
        display: none;
    }
    
    .affiliate_card {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 20px 16px;
        width: 294px;
        flex-shrink: 0;
        position: relative;
    }
    
    /* Rating section - логотип и информация в ряд */
    .affiliate_card_rating_section {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .affiliate_card_logo {
        width: 120px;
        height: 74px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .affiliate_card_info {

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 72px;
        text-wrap: wrap;
        gap: unset;

    }
    
    .affiliate_card_name {
        font-size: 16px;
        line-height: 1.5em;
        width: auto;
        margin: 0;
        width: 130px;
        height: auto;
    }
    
    .affiliate_card_rating {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .affiliate_card_rating_score {
        display: flex;
        align-items: center;
        gap: 2px;
    }
    
    .affiliate_card_rating_number {
        font-size: 14px;
        font-weight: 600;
    }
    
    .affiliate_card_reviews {
        font-size: 14px;
        font-weight: 500;
    }
    
    /* Information section - комиссии в ряд */
    .affiliate_card_details {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }
    
    .affiliate_card_detail {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.3em;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: #AAABB1;
    }
    
    .affiliate_card_detail_separator {
        width: 3px;
        height: 3px;
        background: #AAABB1;
        border-radius: 50%;
    }
    
    .affiliate_card_description {
        font-size: 15px;
        line-height: 1.47em;
        color: #555555;
        margin: 0;
    }
    
    .affiliate_card_button {
        width: 100%;
        height: auto;
        padding: 12px 20px;
    }
    
    .affiliate_card_button_text {
        font-size: 14px;
        font-weight: 500;
    }
    
    /* Label позиционирование */
    .affiliate_card_label {
        top: 8px;
        left: 0;
        width: 126px;
        height: 25px;
    }
    
    /* Скрываем вертикальные разделители на мобильных */
    .affiliate_card_divider {
        display: none;
    }
    
    /* Скрываем десктопную структуру на мобильных */
    .affiliate_card_content {
        display: none;
    }
    
    /* Скрываем второй .affiliate_card_button (десктопную версию) на мобильных */
    .affiliate_card_content + .affiliate_card_divider + .affiliate_card_button {
        display: none;
    }
    
    /* Добавляем горизонтальные разделители */
    .affiliate_card_divider_horizontal {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
        margin: 0;
    }
    
    .affiliate_cta {
        width: 100%;
        font-size: 16px;
    }
}

/* Companies Section Styles */
.companies_section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.companies_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.companies_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #EA53D3;
}

.companies_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
}

.companies_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F8F9F9;
    width: 1062px;
    max-width: 100%;
}

.companies_cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.companies_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    background: #202020;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    flex: 1;
}

.companies_card_logo {
    width: 352px;
    height: 243px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1280px) {
    .companies_card_logo {
        width: 100%;
        height: 200px;
    }
    
}

.companies_card_logo_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.companies_card_info {
    display: flex;
    align-self: stretch;
    gap: 16px;
}

.companies_card_name_section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.companies_card_name_link {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.companies_card_name {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
}

.companies_card_link {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FF7105;
    text-decoration: underline;
}

.companies_card_tag_rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.companies_card_tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    background: rgba(239, 50, 145, 0.1);
    border-radius: 4px;
}

.companies_card_tag_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #D6398C;
}

.companies_card_rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.companies_card_rating_score {
    display: flex;
    align-items: center;
    gap: 3px;
}

.companies_card_rating_number {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FFFFFF;
}

.companies_card_star {
    width: 16px;
    height: 16px;
    fill: #FF781D;
    margin-top: -2px;
}

.companies_card_reviews {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FFFFFF;
}

.companies_card_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.57em;
    color: #F8F9F9;
    height: 66px;
    overflow: hidden;
}

.companies_card_button {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: 2px solid rgba(231, 231, 232, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.companies_card_button_content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    width: 100%;
}

.companies_card_button_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FCE3F0;
}

.companies_card_button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.companies_cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.companies_cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.companies_cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .companies_section {
        padding: 80px 0;
    }
    
    .companies_cards {
        flex-direction: row;
    }
}

@media (max-width: 1023px) {
    .companies_section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .companies_subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .companies_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .companies_description {
        font-size: 15px;
        line-height: 1.47em;
        width: 100%;
        text-align: left;
    }
    
    .companies_cards {
        flex-direction: column;
        gap: 16px;
    }
    
    .companies_card {
        gap: 16px;
        padding: 16px;
    }
    
    .companies_card_logo {
        width: 100%;
        height: 124px;
    }
    
    .companies_card_name {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .companies_card_description {
        font-size: 15px;
        line-height: 1.47em;
        height: auto;
    }
    
    .companies_cta {
        width: 100%;
        font-size: 16px;
    }
}

/* Personas Section Styles */
.personas_section {
    padding: 80px 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.personas_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.personas_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #EA53D3;
}

.personas_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
}

.personas_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F8F9F9;
    width: 1062px;
    max-width: 100%;
}

.personas_cards {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.personas_card {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.personas_card:last-child {
    border-bottom: none;
}

.personas_card_info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}


.personas_card_name_role {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.personas_card_name {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
}

.personas_card_role {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 4px 16px;
    background: #202020;
    border-radius: 4px;
    width: fit-content;
}

.personas_card_role_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.personas_card_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F8F9F9;
    flex: 1;
}

.personas_card_button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 112px;
    height: 46px;
    background: transparent;
    border: 2px solid rgba(231, 231, 232, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.personas_card_button_content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    width: 100%;
}

.personas_card_button_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57em;
    letter-spacing: -0.5%;
    color: #FCE3F0;
}

.personas_card_button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.personas_cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.personas_cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.personas_cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .personas_section {
        padding: 80px 0;
    }
    
    .personas_card {
        gap: 32px;
    }
}

@media (max-width: 1023px) {
    .personas_section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .personas_subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .personas_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .personas_description {
        font-size: 15px;
        line-height: 1.47em;
        width: 100%;
        text-align: left;
    }
    
    .personas_card {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 0 24px;
    }
    
    .personas_card_info {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    
    .personas_card_name_role {
        gap: 6px;
    }
    
    .personas_card_name {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .personas_card_role {
        padding: 4px 12px;
        width: fit-content;
    }
    
    .personas_card_description {
        font-size: 15px;
        line-height: 1.47em;
    }
    
    .personas_card_button {
        width: 100%;
        height: auto;
    }
    
    .personas_cta {
        width: 100%;
        font-size: 16px;
    }
}

/* Reviews Slider Section Styles */
.reviews_section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.reviews_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.reviews_subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #EA53D3;
}

.reviews_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
    text-align: center;
}

.reviews_slider_container {
    display: flex;
    align-items: center;
    gap: 36px;
    width: 100%;
    position: relative;
}

.reviews_nav_button {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.reviews_nav_button:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.reviews_nav_button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.reviews_nav_button svg {
    width: 7.78px;
    height: 14px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2px;
}

.reviews_nav_button:hover svg {
    stroke: rgba(255, 255, 255, 0.5);
}

.reviews_slider {
    flex: 1;
    overflow: hidden;
}

.reviews_slides {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews_slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 60px 0 0;
    background: #202020;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.reviews_slide_image {
    width: 410px;
    height: 400px;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(132deg, rgb(0 42 252 / 21%) 4%, rgb(255 113 5 / 89%) 96%);
}

.reviews_slide_image_img {
    width: 110%;
    height: 110%;
    margin-top: -38px;
    margin-left: -35px;
    object-fit: cover;
    
}

.reviews_slide_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.reviews_slide_quote {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.31em;
    letter-spacing: -0.5%;
    color: #F8F9F9;
    height: 133px;
    display: flex;
    align-items: center;
}

.reviews_slide_author {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 254px;
}

.reviews_slide_name {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
}

.reviews_slide_role {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 4px 16px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    border-radius: 4px;
    width: fit-content;
}

.reviews_slide_role_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.reviews_dots {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
}

.reviews_dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews_dot::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(231, 231, 232, 0.5);
    transition: all 0.3s ease;
}

.reviews_dot.active::after {
    background: #F6F8FB;
}

.reviews_dot:hover::after {
    background: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
    .reviews_section {
        padding: 80px 0;
    }
    
    .reviews_slider_container {
        gap: 24px;
    }
    
    .reviews_slide {
        gap: 40px;
        padding: 0 40px 0 0;
    }
    
    .reviews_slide_image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1023px) {
    .reviews_section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .reviews_subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .reviews_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .reviews_slider_container {
        flex-direction: column;
        gap: 16px;
    }
    
    .reviews_nav_button {
        display: none;
    }
    
    .reviews_slide {
        flex-direction: column;
        gap: 0;
        padding: 0 0 16px;
    }
    
    .reviews_slide_image {
        width: 100%;
        height: 340px;
        border-radius: 16px 16px 0 0;
    }
    
    .reviews_slide_content {
        gap: 16px;
        padding: 16px;
    }
    
    .reviews_slide_quote {
        font-size: 20px;
        line-height: 1.4em;
        height: auto;
    }
    
    .reviews_slide_author {
        gap: 8px;
        width: 100%;
    }
    
    .reviews_slide_name {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .reviews_dots {
        margin-top: 0;
    }
    
}

@media (max-width: 768px) {
    .reviews_slider {
        overflow: visible !important;
        width: 95%;
    }
    
    .reviews_slides {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding: 0 !important;
        margin: 0 !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        display: flex !important;
        transform: none !important;
        transition: none !important;
        gap: 16px !important;
    }
    
    .reviews_slides::-webkit-scrollbar {
        display: none !important;
    }
    
    .reviews_slide{
        min-width: 100%;
        /* width: 345px !important; */
        margin: 0 !important;
        scroll-snap-align: start !important;
        transform: none !important;
        flex-direction: column !important;
        gap: 0 !important;
        /* padding: 0 0 16px !important; */
    }
    
    .reviews_slide_image {
        width: 100% !important;
        height: 340px !important;
        border-radius: 16px 16px 0 0 !important;
    }
    
    .reviews_slide_content {
        gap: 16px !important;
        padding: 16px !important;
    }
    
    .reviews_slide_quote {
        font-size: 20px !important;
        line-height: 1.4em !important;
        height: auto !important;
    }
    
    .reviews_slide_author {
        gap: 8px !important;
        width: 100% !important;
    }
    
    .reviews_slide_name {
        font-size: 16px !important;
        line-height: 1.5em !important;
    }
}

/* CTA Section Styles */
.cta_section {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.cta_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 64px 220px;
    background: rgba(4, 4, 4, 0.07);
    background-image: url("/wp-content/themes/15m/img/Dark.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
    width: 100%;
    position: relative;
}

.cta_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 4, 4, 0.07);
    border-radius: 16px;
    z-index: 1;
}

.cta_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cta_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
    text-align: center;
}

.cta_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
    text-align: center;
    width: 100%;
}

.cta_button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta_button_content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta_button_text {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.cta_button:hover {
    background: #333333;
    transform: translateY(-2px);
}

@media (min-width: 1024px) {
    .cta_section {
        padding: 50px 0;
    }
    
    .cta_card {
        padding: 64px 100px;
    }
}

@media (max-width: 1023px) {
    .cta_section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .cta_card {
        padding: 48px 16px;
    }
    
    .cta_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .cta_description {
        font-size: 16px;
        line-height: 1.5em;
        letter-spacing: -0.5%;
    }
    
    .cta_button {
        width: 100%;
        padding: 16px 32px;
    }
}

/* Logos Section Styles */
.logos_section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 0 120px 50px;
    width: 100%;
}

.logos_logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: transparent;
    transition: all 0.3s ease;
}

.logos_logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.logos_logo_img {
    width: auto;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logos_logo:hover .logos_logo_img {
}

@media (min-width: 1024px) {
    .logos_section {
        gap: 32px;
        padding: 0 80px 40px;
    }
    
    .logos_logo {
        padding: 20px;
    }
    
    .logos_logo_img {
        height: 40px;
    }
}

@media (max-width: 1023px) {
    .logos_section {
        gap: 16px;
        padding: 0 16px 48px;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .logos_section::-webkit-scrollbar {
        display: none;
    }
    
    .logos_logo {
        padding: 16px;
        flex: 0 0 auto;
        height: 56px;
        min-width: 120px;
    }
    
    .logos_logo_img {
        height: 24px;
        width: auto;
    }
}

/* Social Media Section Styles */
.social_media_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 80px 120px;
    width: 100%;
}

.social_media_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.social_media_label {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    text-align: center;
    color: #EA53D3;
}

.social_media_title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    text-align: center;
    color: #FFFFFF;
}

.social_media_description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #F8F9F9;
}

.social_media_buttons {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}

.social_media_button {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 8px;
    flex: 1;
    background: #202020;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    transform: translateY(-2px);
}

.social_media_button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.social_media_button:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.social_media_button_content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    width: 100%;
}

.social_media_button_icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    flex-shrink: 0;
    overflow: hidden;
}

.social_media_button_icon img{
    width: 100%;
}

.social_media_button_icon.linkedin {
    background: #1176DB;
}

.social_media_button_icon.youtube {
    background: #D71A1D;
}

.social_media_button_icon.apple {
    background: linear-gradient(180deg, rgba(240, 81, 253, 1) 0%, rgba(140, 46, 198, 1) 100%);
}

.social_media_button_icon.spotify {
    background: #1ED760;
}

.social_media_button_icon svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.social_media_button_text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.social_media_button_name {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #FFFFFF;
    text-align: left;
}

.social_media_button_stats {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.67em;
    color: #FFFFFF;
    text-align: left;
}

@media (min-width: 1024px) {
    .social_media_section {
        padding: 80px 0px;
        gap: 28px;
    }
    
    .social_media_title {
        font-size: 40px;
    }
    
    .social_media_buttons {
        gap: 20px;
    }
}



/* Container Styles */
.container {
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1024px) {
    .head-foot-container {
        width: 1024px;
    }
}

@media (min-width: 1280px) {
    .head-foot-container {
        width: 1200px;
    }
}

/* About Us Section Styles */
.about-us-section {
margin-top: 166px;
    padding: 80px 0;
    display: flex;
    gap: 32px;
    align-items: stretch;
    z-index: 9999;
}

.about-us-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.about-us-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.about-us-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.about-us-subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    text-align: center;
    color: #EA53D3;
}

.about-us-title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    text-align: center;
    color: #FFFFFF;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.about-us-description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    text-align: left;
    color: #F8F9F9;
    width: 1064px;
    max-width: 100%;
}

.about-us-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Graphik LCG", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
}

.about-us-button-icon {
    width: 16px;
    height: 16px;
}

.about-us-cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.about-us-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 74px 32px 16px;
    background: #202020;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    position: relative;
    flex: 1;
}

.about-us-card-icon {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 148px;
    height: 110px;
}

.about-us-card-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.about-us-card-number {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.31em;
    letter-spacing: -0.5%;
    color: #FFFFFF;
}

.about-us-card-name {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.31em;
    letter-spacing: -0.5%;
    color: #FFFFFF;
}

.about-us-card-description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F8F9F9;
}

@media (min-width: 1024px) {
    .about-us-section {
        padding: 60px 40px;
        flex-direction: column;
    }
    
    .about-us-description {
        width: 60%;
        text-align: center;
        padding: 0 65px;
    }
    
    .about-us-cards {
        flex-direction: row;
    }
}

@media (max-width: 1023px) {
    .about-us-section {
        padding: 48px 0px;
        margin-top: 32px;
        flex-direction: column;
        gap: 24px;
    }
    
    .about-us-container {
        gap: 24px;
    }
    
    .about-us-text {
        gap: 16px;
    }
    
    .about-us-subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .about-us-title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .about-us-description {
        font-size: 15px;
        line-height: 1.47em;
        width: 100%;
        text-align: left;
    }
    
    .about-us-button {
        font-size: 15px;
        line-height: 1.47em;
    }
    
    .about-us-cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .about-us-card {
        padding: 32px 16px 16px;
        gap: 8px;
    }
    
    .about-us-card-icon {
        width: 98px;
        height: 73px;
        top: 16px;
        right: 16px;
    }
    
    .about-us-card-number,
    .about-us-card-name {
        font-size: 20px;
        line-height: 1.4em;
        font-weight: 600;
    }
    
    .about-us-card-description {
        font-size: 15px;
        line-height: 1.47em;
    }
}

/* Shows Section Styles */
.shows-section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.shows-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.shows-subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #EA53D3;
}

.shows-title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.36em;
    color: #FFFFFF;
}

.shows-description {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F8F9F9;
    width: 1062px;
    max-width: 100%;
}

.shows-cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.shows-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.shows-card-cover {
    width: 100%;
    height: 220px;
    background: #333;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.shows-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shows-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shows-card-title {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44em;
    color: #FFFFFF;
}

.shows-card-subtitle {
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #AAABB1;
}

.shows-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    font-family: "Graphik LCG", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.shows-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(132deg, rgba(234, 83, 211, 1) 4%, rgba(255, 113, 5, 1) 96%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.shows-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}
.about-us-section {
position: relative;
    z-index: 9999;
}
@media (min-width: 1024px) {
    .about-us-section {
        padding: 80px 0;
        flex-direction: column;
        z-index: 9999;
    }
    
    .about-us-description {
        width: 81%;
        text-align: center;
    }
    
    .about-us-cards {
        flex-direction: row;
    }
    
    .shows-section {
        padding: 80px 0;
    }
    
    .shows-description {
        width: 100%;
    }
    
    .shows-cards {
        flex-direction: row;
    }
}

@media (max-width: 1023px) {
    .container {
    }
    
    .shows-section {
        padding: 48px 0;
        gap: 24px;
    }
    
    .shows-subtitle {
        font-size: 14px;
        line-height: 1.1em;
    }
    
    .shows-title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .shows-description {
        font-size: 15px;
        line-height: 1.47em;
        width: 100%;
        text-align: left;
    }
    
    .shows-cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .shows-card {
        gap: 12px;
    }
    
    .shows-card-cover {
        height: 200px;
    }
    
    .shows-card-title {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .shows-card-subtitle {
        font-size: 12px;
        line-height: 1.67em;
        letter-spacing: -0.5%;
    }
    
    .shows-cta {
        width: 100%;
        font-size: 16px;
    }
    }
    .points {
display: flex;
flex-direction: column;
gap: 8px;
align-items: stretch; }

.point {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.point-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(147deg, rgba(255, 4, 217, 1) 0%, rgba(255, 119, 0, 1) 68%);
}

.point-text {
    font-family: "Graphik LCG";
    font-weight: 400;
    font-size: 15px;
    line-height: 1.32;
    color: #ffffff;
    letter-spacing: 0.35px;
    text-align: left;
}

/* Desktop styles for points block */
@media (min-width: 1024px) {
    .form-info-style .points {
        display: flex;
        font-size: 16px;
        margin-top: 13px;
        color: #b4b4b4;
    }
    .form-info-style .mobile-fallback-text {
        display: none;
    }
    .main-form{
        margin-top: 20px;
    }
}

@media (max-width: 1023px) {
    .form-info-style .points {
        display: none;
    }
    .form-info-style .mobile-fallback-text {
        display: block;
    }
}
    .big-man-display {
    -webkit-mask: linear-gradient(to right, black 0%, black calc(100% - 2px), transparent 100%);
    mask: linear-gradient(to right, black 0%, black calc(100% - 2px), transparent 100%);
}

.explore-button-icon {
    animation: moveUpDown 1s ease-in-out infinite;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.explore-button:hover .explore-button-icon {
    animation-play-state: paused;
    transform: translateY(-8px);
}

@media (max-width: 1023px) {
    .social_media_section {
        padding: 48px 16px;
        gap: 24px;
    }
    
    .social_media_label {
        font-size: 14px;
    }
    
    .social_media_title {
        font-size: 28px;
        line-height: 1.36em;
    }
    
    .social_media_description {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .social_media_buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .social_media_button {
        flex: none;
    }
    .about-us-header {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }
    .about-us-button {
        width: fit-content;
        padding:unset;
    }
    .about-us-content{
        align-items: flex-start;
    }
    .about-us-container {
        gap: 32px;
    }
    .news_main_image {
        height: 212px;
        width: 100%;
        order: 1;
    }
    .news_main_text {
        gap: 10px;
        padding: 0;
        order: 0;
    }
    .news_card_image{
        order: 1;
    }
    .news_card_content{
        order: 0;
    }
    .cta_description br{
        display: none;
    }
    .logos_section{
        padding: 0 0 48px;
    }
    .services_card_button{
        margin-top: 16px;
    }
    .services_card{
        height: auto;
    }
    .services_card_logo{
        width: 147px;
        height: 90px;
    }
    .affiliate_card{
        flex: unset;
        min-width: 294px;
    }
   
}