/* redesign-statics.css — shared marketing sections (reused by the ABOUT page and other statics) + the static-page components (about intro, FAQ page accordion, B2B form, partnership swiper). Loads AFTER the monolith style.css, so it inherits :root vars (--hertz-white/--hertz-black) and the site font. Scoped per-section; no global reset copied — explicit scoped image sizing added where the frontend global img/svg reset was relied on. */

/* NOTE (fonts): PART A sections inherit the site's global font (no font-family in any selector). PART B uses `font: … "Poppins", sans-serif` — Poppins already exists in /assets/front/fonts/, so no @font-face and no woff2 to copy. */
/* NOTE (url): No url() references anywhere below — every image/icon is an inline <img>/<svg>; PART B FAQ +/- toggle is a Font Awesome <i> glyph, not a background image. */


/* =========================================================
   PART A — SHARED MARKETING SECTIONS
   Copied VERBATIM from redesign-home.css (the home page is the
   reference implementation). .new-banner / .service-card blocks
   intentionally NOT copied.
   ========================================================= */

/* ---- yellow-lines (redesign-home.css 62–81) ---- */
.yellow-lines {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 6px;
}

.yellow-lines .short-line {
    width: 5px;
    height: 4px;
    background: #ffd400;
}

.yellow-lines .long-line {
    width: 15px;
    height: 4px;
    background: #ffd400;
}


/* ---- ADVANTAGES (redesign-home.css 359–424) ---- */
.advantages-sec {
    padding: 72px 0;
    background: #f7f7f7;
}

.advantages-sec h1 {
    color: #141414;
    line-height: 1;
    margin-bottom: 28px;
    font-weight: 700;
    font-size: 36px;
}

.advantages-sec .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.advantages-sec .card {
    min-height: 300px;
    padding: 32px;
    border: 1px solid #EBEBEB;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
}

.advantages-sec .card:hover {
    transform: scale(0.98);
    transition: transform 0.3s ease;
}

.advantages-sec .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF8DB;
}

.advantages-sec .icon img {
    width: 28px;
    height: 28px;
}

.advantages-sec .card-content h2 {
    margin: 0 0 12px;
    color: #151515;
    line-height: 1.2;
    font-weight: 700;
    font-size: 20px;
}

.advantages-sec .card-content p {
    max-width: 250px;
    margin: 0;
    color: #808080;
    font-weight: 500;
    font-size: 16px;
}


/* ---- BLOGS (redesign-home.css 430–543) ---- */
.blogs-sec {
    padding: 72px 0 32px;
}

.blogs-sec h1 {
    margin-bottom: 28px;
    color: #141414;
    line-height: 1;
    font-weight: 700;
    font-size: 36px;
}

.blogs-sec .blogs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.blogs-sec .blog-card {
    overflow: hidden;
    border-radius: 10px;
    background: #f8f8f8;
    color: #151515;
    text-decoration: none;
}

.blogs-sec .blog-image {
    height: 200px;
    overflow: hidden;
}

.blogs-sec .blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blogs-sec .blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blogs-sec .blog-content {
    padding: 16px 20px;
}

.blogs-sec .category {
    display: inline-block;
    padding: 8px 10px;
    background: #FFCC00;
    color: #000000;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 12px;
}

.blogs-sec .blog-content h2 {
    margin: 10px 0 6px;
    color: #141413;
    font-weight: 700;
    font-size: 18px;
}

.blogs-sec .blog-content p {
    margin: 0;
    color: #4D4D4D;
    font-weight: 400;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogs-sec .blog-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    color: #808080;
    font-weight: 500;
    font-size: 14px;
}

.blogs-sec .blog-info span {
    display: flex;
    gap: 4px;
}

.blogs-sec .blog-info img {
    width: 20px;
    height: 20px;
}

.blogs-sec .arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #555;
    border: 0.9px solid #EBEBEB;
}

.blogs-sec .arrow svg {
    width: 18px;
    height: 18px;
}


/* ---- Blogs head + see-all (redesign-home.css 547–569) ---- */
.blogs_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.see-blogs {
    padding: 12px 16px;
    border-radius: 8px;
    background-color: #F7F7F7;
    font-weight: 500;
    font-size: 16px;
    color: #141414;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.see-blogs svg {
    width: 16px;
    height: 16px;
}


/* ---- Blogs swiper head / mobile-see-all / slider buttons (redesign-home.css 573–633) ---- */
.swiper-sec .blogs_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.mobile-see-all {
    display: none;
}

.blogs-slider-buttons {
    display: none;
    align-items: center;
    gap: 18px;
}

.blogs-slider-buttons button {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: none;
    border-radius: 8px;

    background: #F7F7F7;

    cursor: pointer;
    transition: background-color 0.3s ease;
}

.blogs-slider-buttons button:hover {
    background: #F1F1F1;
}

.blogs-slider-buttons button svg {
    width: 8px;
    height: 16px;
    display: block;
}

.blogs-slider-buttons button.swiper-button-disabled {
    opacity: 1;
}

.blogs-slider-buttons button.swiper-button-disabled svg path {
    fill: #BDBDBD;
}


/* ---- FAQ (home marketing section) (redesign-home.css 639–726) ---- */
.faq-sec {
    padding: 40px 0 0;
}

.faq-sec h1 {
    color: #141414;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 28px;
}

.faq-sec .faq_items {
    margin-top: 28px;
}

.faq-sec .faq_item {
    border-bottom: 1px solid #ddd;
}

.faq-sec .question {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 8px;
    cursor: pointer;
}

.faq-sec .question .text {
    color: #151515;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.faq-sec .question .icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: #f7f7f7;

    color: #666;
    font-size: 13px;
}

.faq-sec .question .icon .fa-minus {
    display: none;
}

.faq-sec .answer {
    max-height: 0;
    overflow: hidden;
    padding-right: 12px;
    color: #4D4D4D;
    font-size: 16px;
    line-height: 1.3;

    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-sec .faq_item.active .answer {
    max-height: 150px;
    padding: 0 55px 18px 8px;
}

.faq-sec .question .icon img {
    width: 20px;
    height: 20px;
}

.faq-sec .question .icon .minus-icon {
    display: none;
}

.faq-sec .faq_item.active .question .icon .plus-icon {
    display: none;
}

.faq-sec .faq_item.active .question .icon .minus-icon {
    display: block;
}


/* ---- PARTNERS (redesign-home.css 732–770) ---- */
.partner-sec {
    padding: 72px 0;
}

.partner-sec h1 {
    margin-bottom: 36px;
    color: #141414;
    line-height: 1;
    font-weight: 700;
    font-size: 36px;
}

/* Swiper */
.partner-sec .partners {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.partner-sec .swiper-wrapper {
    display: flex;
    align-items: center;
}

.partner-sec .partner {
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.partner-sec .partner img {
    max-width: 100%;
    height: 90px;
    object-fit: contain;
}


/* ---- APP (redesign-home.css 776–867) ---- */
.app-sec {
    position: relative;
    height: 140px;
    background: #3D3D3D;
    overflow: hidden;
}

.app-sec .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.app-sec .app-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    z-index: 0;
}

.app-sec .app-bg img {
    width: 100%;
    display: block;
}

.app-sec .app-content {
    width: fit-content;
}

.app-sec .app-content p {
    margin: 0;
    color: #EBEBEB;
    font-weight: 500;
    font-size: 18px;
}

.app-sec .app-image {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    z-index: 2;
}

.app-sec .app-image img {
    height: 215px;
    display: block;
    object-fit: contain;
}

.app-sec .app-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-sec .store-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.app-sec .store-links.mobile {
    display: none;
}

.app-sec .store-links.desktop a {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #3D3D3D;
    border: 1px solid #616161;
    padding: 8px 10px;
    border-radius: 8px;
    text-align: center;
}

.app-sec .qr-code {
    width: 92px;
    height: 92px;
}

.app-sec .qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ---- PART A RESPONSIVE (section-scoped rules only, .new-banner/.service-card skipped) ---- */

/* redesign-home.css @media (min-width: 1025px) 876–895 */
@media (min-width: 1025px) {

    .swiper-sec .blogs {
        display: block;
        overflow: visible;
    }

    .swiper-sec .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;

        transform: none !important;
    }

    .swiper-sec .blog-card {
        width: auto !important;
        margin-right: 0 !important;
    }
}


/* redesign-home.css @media (max-width: 1024px) 899–1008 (new-banner rules omitted) */
@media (max-width: 1024px) {

    .blogs-sec .mobile-see-all {
        display: inline-flex;
        align-items: center;
        gap: 10px;

        margin-top: 16px;

        color: #292929;
        text-decoration: none;
    }

    .blogs-slider-buttons {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .blogs-slider-buttons button {
        display: flex;
    }

    .blogs-slider-buttons button.swiper-button-disabled {
        opacity: 0.4;
    }

    .swiper-sec .blogs {
        display: block;
        width: 100%;
        overflow: hidden;
        margin-top: 32px;
    }

    .swiper-sec .swiper-wrapper {
        display: flex;
    }

    .swiper-sec .blog-card {
        flex-shrink: 0;
    }

    .swiper-sec .blogs_head>.see-blogs {
        display: none;
    }

    .swiper-sec .mobile-see-all {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 16px;

        color: #292929;
        text-decoration: none;
    }

    .advantages-sec {
        padding: 56px 0;
    }

    .advantages-sec .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-sec .card {
        min-height: 210px;
        gap: 24px;
    }

    .advantages-sec .card-content p {
        max-width: unset;
    }
}


/* redesign-home.css @media (max-width: 768px) 1012–1083 (new-banner rules omitted) */
@media (max-width: 768px) {

    .blogs-sec .blogs {
        margin-top: 28px;
    }

    .blogs-sec h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .faq-sec .question .text {
        font-size: 18px;
    }

    .faq-sec .answer {
        font-size: 14px;
    }

    .faq-sec h1 {
        font-size: 28px;
    }

    .advantages-sec {
        padding: 40px 0;
    }

    .advantages-sec h1 {
        font-size: 28px;
    }

    .swiper-sec {
        padding: 40px 0 32px;
    }

    .faq-sec {
        padding: 0;
    }

    .partner-sec {
        padding: 40px 0;
    }

    .partner-sec h1 {
        font-size: 28px;
    }

    .app-sec .qr-code {
        display: none;
    }

    .app-sec .store-links.mobile {
        display: flex;
    }

    .app-sec .store-links.desktop {
        display: none;
    }

    .app-sec .app-bg {
        width: 475px;
    }
}


/* redesign-home.css @media (max-width: 440px) 1087–1187 (new-banner/.service-card rules omitted) */
@media (max-width: 440px) {

    .app-sec {
        height: 174px;
    }

    .app-sec .app-content {
        position: absolute;
        z-index: 1;
        top: 20px;
        left: 12px;
        line-height: normal;
    }

    .app-sec .app-bg {
        left: unset;
        right: -30%;
        transform: translateX(0);
        transform: rotate(8deg);
        width: 430px;
    }

    .app-sec .app-image {
        left: unset;
        transform: translateX(0);
        transform: rotate(-18deg);
        right: -20%;
        bottom: -55px;
    }

    .app-sec .store-links.mobile {
        position: absolute;
        z-index: 1;
        bottom: 20px;
        left: 12px;
    }

    .app-sec .app-content p {
        font-size: 16px;
        line-height: 1;
    }

    .advantages-sec {
        padding: 32px 0;
    }

    .blogs-sec .blogs {
        margin-top: 24px;
    }

    .blogs-sec h1 {
        margin-bottom: 16px;
    }

    .blogs-sec .blogs-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .advantages-sec .cards {
        grid-template-columns: 1fr;
    }

    .advantages-sec .card-content p {
        font-size: 14px;
        line-height: normal;
    }

    .advantages-sec .card {
        padding: 24px;
    }
}


/* =========================================================
   PART B — STATIC-PAGE COMPONENTS
   Extracted from hertz.org.az-frontend/assets/css/style.css.
   All selectors are qualified with `section.<name>` (as authored
   in the frontend) so the about intro cannot collide with the
   chrome nav `.about`. FAQ-page component is `section.faq …`,
   distinct from the marketing `.faq-sec` above.
   ========================================================= */

/* ---- ABOUT intro (frontend style.css 1258–1284) ---- */
section.about {
    padding: 60px 0 80px;
    background: var(--hertz-white);
}

section.about .about_wrapper h2 {
    color: var(--hertz-black);
    font: 600 29px/36px "Poppins", sans-serif;
    margin-bottom: 40px;
}

section.about .about_wrapper .about_content {
    display: flex;
    align-items: flex-start;
    gap: 140px;
}

section.about .about_wrapper .about_content .picture {
    width: calc((100% - 1 * 140px) / 2);
    overflow: hidden;
    border-radius: 20px;
}

section.about .about_wrapper .about_content .text {
    width: calc((100% - 1 * 140px) / 2);
    font: 400 20px/30px "Poppins", sans-serif;
}

/* scoped image sizing — replaces the frontend global img/svg reset (display:block; width:100%; height:100%; object-fit:cover) the .picture <img> relied on */
section.about .about_wrapper .about_content .picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---- PARTNERSHIP (frontend style.css 1290–1311) ---- */
section.partnership {
    padding: 60px 0 80px;
    background: var(--hertz-white);
}

section.partnership .partnership_wrapper h2 {
    color: var(--hertz-black);
    font: 600 29px/36px "Poppins", sans-serif;
    margin-bottom: 40px;
}

section.partnership .partnership_wrapper .partnershipSwiper .swiper-wrapper .swiper-slide {
    height: 120px;
    width: auto;
    padding: 20px 50px;
}

section.partnership .partnership_wrapper .partnershipSwiper .swiper-wrapper .swiper-slide img {
    display: block;
    height: 100%;
    object-fit: contain;
}


/* ---- FAQ PAGE component (frontend style.css 1317–1413) — distinct from .faq-sec ---- */
section.faq {
    padding: 60px 0 80px;
    background: var(--hertz-white);
}

section.faq .faq_wrapper h2 {
    color: var(--hertz-black);
    font: 600 29px/36px "Poppins", sans-serif;
    margin-bottom: 40px;
}

section.faq .faq_wrapper .faq_items {
    display: flex;
    flex-direction: column;
    width: 75%;
}

section.faq .faq_wrapper .faq_items .faq_item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 12px 0;
}

section.faq .faq_wrapper .faq_items .faq_item .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

section.faq .faq_wrapper .faq_items .faq_item .question .text {
    max-width: calc(100% - 24px - 20px);
    margin: 0px;
    font: 500 20px/32px "Poppins", sans-serif;
    letter-spacing: 0.0075em;
}

section.faq .faq_wrapper .faq_items .faq_item .question .icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
}

section.faq .faq_wrapper .faq_items .faq_item .question .icon i {
    color: rgba(0, 0, 0, 0.4);
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

section.faq .faq_wrapper .faq_items .faq_item .question .icon i.fa-solid.fa-minus {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

section.faq .faq_wrapper .faq_items .faq_item .answer {
    margin: 0;
    font: 400 16px/24px "Poppins", sans-serif;
    letter-spacing: 0.00938em;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
    interpolate-size: allow-keywords;
}

section.faq .faq_wrapper .faq_items .faq_item.active .answer {
    height: auto;
    margin-top: 12px;
}

section.faq .faq_wrapper .faq_items .faq_item.active .question .icon {
    transform: rotate(180deg);
}

section.faq .faq_wrapper .faq_items .faq_item.active .question .icon i.fa-solid.fa-plus {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

section.faq .faq_wrapper .faq_items .faq_item.active .question .icon i.fa-solid.fa-minus {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
}


/* ---- B2B (frontend style.css 1420–1522) ---- */
section.b2b {
    padding: 60px 0 80px;
    background: var(--hertz-white);
}

section.b2b .b2b_wrapper h2 {
    color: var(--hertz-black);
    font: 600 29px/36px "Poppins", sans-serif;
    margin-bottom: 40px;
}

section.b2b .b2b_wrapper .title_description {
    margin-bottom: 60px;
}

section.b2b .b2b_wrapper .title_description p {
    margin: 0;
    font: 400 22px/33px "Poppins", sans-serif;
}

section.b2b .b2b_wrapper .b2b_form {
    display: flex;
    align-items: flex-start;
    gap: 140px;
}

section.b2b .b2b_wrapper .b2b_form form {
    width: calc((100% - 60%));
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.b2b .b2b_wrapper .b2b_form .picture {
    width: calc((100% - 40%));
    border-radius: 20px;
    overflow: hidden;
}

section.b2b .b2b_wrapper .b2b_form form .form_picture {
    width: 317px;
    height: 229px;
    overflow: hidden;
}

section.b2b .b2b_wrapper .b2b_form form .form_group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

section.b2b .b2b_wrapper .b2b_form form .form_group label {
    color: #141414;
    font: 600 18px/28px "Poppins", sans-serif;
}

section.b2b .b2b_wrapper .b2b_form form .form_group input,
section.b2b .b2b_wrapper .b2b_form form .form_group textarea {
    font: 400 16px/30px "Poppins", sans-serif;
    padding: 10px 16px;
    border-radius: 5px;
    color: #141414;
    border: 1px solid #e5e5e5;
    background: #fff;
    width: 100%;
}

section.b2b .b2b_wrapper .b2b_form form .form_group input[type="tel"] {
    padding-left: 60px;
}

section.b2b .b2b_wrapper .b2b_form form .form_group .iti__selected-flag {
    overflow: hidden;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 3px 10px;
    border-right: 1px solid #e5e5e5;
}

section.b2b .b2b_wrapper .b2b_form form .form_group textarea {
    resize: none;
    height: 140px;
}

section.b2b .b2b_wrapper .b2b_form form .form_group input:focus,
section.b2b .b2b_wrapper .b2b_form form .form_group textarea:focus {
    outline: 1px solid #fc0;
}

section.b2b .b2b_wrapper .b2b_form form button {
    cursor: pointer;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #fc0;
    color: #141414;
    text-align: center;
    font: 600 16px/30px "Poppins", sans-serif;
    padding: 6px 24px;
}

/* scoped image sizing — replaces the frontend global img reset for the B2B .picture and .form_picture <img> */
section.b2b .b2b_wrapper .b2b_form .picture img,
section.b2b .b2b_wrapper .b2b_form form .form_picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---- PART B RESPONSIVE (frontend @media clusters, section rules only) ---- */

/* frontend style.css @media (min-width:1200px) and (max-width:1399.98px) 6320–6415 */
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {

    section.about .about_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.about .about_wrapper .about_content {
        display: flex;
        align-items: flex-start;
        gap: 100px;
    }

    section.about .about_wrapper .about_content .picture {
        width: calc((100% - 1 * 100px) / 2);
    }

    section.about .about_wrapper .about_content .text {
        width: calc((100% - 1 * 100px) / 2);
        font: 400 20px/30px "Poppins", sans-serif;
    }

    section.partnership .partnership_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.partnership .partnership_wrapper .partnershipSwiper .swiper-wrapper .swiper-slide {
        height: 120px;
        padding: 20px 50px;
    }

    section.faq .faq_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items {
        width: 80%;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .text {
        font: 500 20px/32px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon {
        width: 24px;
        height: 24px;
        border: 3px solid rgba(0, 0, 0, 0.4);
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon i {
        font-size: 16px;
    }

    section.faq .faq_wrapper .faq_items .faq_item .answer {
        font: 400 16px/24px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .title_description p {
        font: 400 22px/33px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .b2b_form {
        display: flex;
        align-items: flex-start;
        gap: 100px;
    }

    section.b2b .b2b_wrapper .b2b_form form {
        width: calc((100% - 60%));
    }

    section.b2b .b2b_wrapper .b2b_form .picture {
        width: calc((100% - 40%));
    }

    section.b2b .b2b_wrapper .b2b_form form .form_picture {
        width: 317px;
        height: 229px;
    }

    section.b2b .b2b_wrapper .b2b_form form button {
        font: 600 16px/30px "Poppins", sans-serif;
        padding: 6px 24px;
    }
}


/* frontend style.css @media (min-width:992px) and (max-width:1199.98px) 6871–6951 */
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {

    section.about .about_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.about .about_wrapper .about_content {
        display: flex;
        align-items: flex-start;
        gap: 50px;
    }

    section.about .about_wrapper .about_content .picture {
        width: calc((100% - 1 * 50px) / 2);
    }

    section.about .about_wrapper .about_content .text {
        width: calc((100% - 1 * 50px) / 2);
        font: 400 20px/30px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items {
        width: 85%;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .text {
        font: 500 20px/32px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon {
        width: 24px;
        height: 24px;
        border: 3px solid rgba(0, 0, 0, 0.4);
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon i {
        font-size: 16px;
    }

    section.faq .faq_wrapper .faq_items .faq_item .answer {
        font: 400 16px/24px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .title_description p {
        font: 400 22px/33px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .b2b_form {
        display: flex;
        align-items: flex-start;
        gap: 50px;
    }

    section.b2b .b2b_wrapper .b2b_form form {
        width: calc((100% - 60%));
    }

    section.b2b .b2b_wrapper .b2b_form .picture {
        width: calc((100% - 40%));
    }

    section.b2b .b2b_wrapper .b2b_form form .form_picture {
        width: 317px;
        height: 229px;
    }

    section.b2b .b2b_wrapper .b2b_form form button {
        font: 600 16px/30px "Poppins", sans-serif;
        padding: 6px 24px;
    }
}


/* frontend style.css @media (min-width:768px) and (max-width:991.98px) 7327–7410 */
@media only screen and (min-width: 768px) and (max-width: 991.98px) {

    section.about .about_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.about .about_wrapper .about_content {
        display: flex;
        align-items: flex-start;
        gap: 70px;
    }

    section.about .about_wrapper .about_content .picture {
        width: 100%;
    }

    section.about .about_wrapper .about_content .text {
        width: 100%;
        font: 400 20px/30px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items {
        width: 90%;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .text {
        font: 500 20px/32px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon {
        width: 24px;
        height: 24px;
        border: 3px solid rgba(0, 0, 0, 0.4);
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon i {
        font-size: 16px;
    }

    section.faq .faq_wrapper .faq_items .faq_item .answer {
        font: 400 16px/24px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .title_description p {
        font: 400 22px/33px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .b2b_form {
        display: flex;
        flex-wrap: wrap-reverse;
        align-items: flex-start;
        gap: 50px;
    }

    section.b2b .b2b_wrapper .b2b_form form {
        width: 100%;
    }

    section.b2b .b2b_wrapper .b2b_form .picture {
        width: 100%;
    }

    section.b2b .b2b_wrapper .b2b_form form .form_picture {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    section.b2b .b2b_wrapper .b2b_form form button {
        font: 600 16px/30px "Poppins", sans-serif;
        padding: 6px 24px;
    }
}


/* frontend style.css @media (min-width:576px) and (max-width:767.98px) 7794–7877 */
@media only screen and (min-width: 576px) and (max-width: 767.98px) {

    section.about .about_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.about .about_wrapper .about_content {
        display: flex;
        align-items: flex-start;
        gap: 70px;
    }

    section.about .about_wrapper .about_content .picture {
        width: 100%;
    }

    section.about .about_wrapper .about_content .text {
        width: 100%;
        font: 400 20px/30px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items {
        width: 95%;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .text {
        font: 500 20px/32px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon {
        width: 24px;
        height: 24px;
        border: 3px solid rgba(0, 0, 0, 0.4);
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon i {
        font-size: 16px;
    }

    section.faq .faq_wrapper .faq_items .faq_item .answer {
        font: 400 16px/24px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .title_description p {
        font: 400 22px/33px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .b2b_form {
        display: flex;
        flex-wrap: wrap-reverse;
        align-items: flex-start;
        gap: 50px;
    }

    section.b2b .b2b_wrapper .b2b_form form {
        width: 100%;
    }

    section.b2b .b2b_wrapper .b2b_form .picture {
        width: 100%;
    }

    section.b2b .b2b_wrapper .b2b_form form .form_picture {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    section.b2b .b2b_wrapper .b2b_form form button {
        font: 600 16px/30px "Poppins", sans-serif;
        padding: 6px 24px;
    }
}


/* frontend style.css @media (max-width:575.98px) 8281–8375 */
@media only screen and (max-width: 575.98px) {

    section.about .about_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.about .about_wrapper .about_content {
        display: flex;
        align-items: flex-start;
        gap: 70px;
    }

    section.about .about_wrapper .about_content .picture {
        width: 100%;
    }

    section.about .about_wrapper .about_content .text {
        width: 100%;
        font: 400 20px/30px "Poppins", sans-serif;
    }

    section.partnership .partnership_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.partnership .partnership_wrapper .partnershipSwiper .swiper-wrapper .swiper-slide {
        height: 120px;
        padding: 10px 30px;
    }

    section.faq .faq_wrapper h2 {
        font: 600 29px/36px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items {
        width: 100%;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .text {
        font: 500 18px/26px "Poppins", sans-serif;
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon {
        width: 22px;
        height: 22px;
        border: 2px solid rgba(0, 0, 0, 0.4);
    }

    section.faq .faq_wrapper .faq_items .faq_item .question .icon i {
        font-size: 14px;
    }

    section.faq .faq_wrapper .faq_items .faq_item .answer {
        font: 400 14px/20px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .title_description p {
        font: 400 18px/26px "Poppins", sans-serif;
    }

    section.b2b .b2b_wrapper .b2b_form {
        display: flex;
        flex-wrap: wrap-reverse;
        align-items: flex-start;
        gap: 50px;
    }

    section.b2b .b2b_wrapper .b2b_form form {
        width: 100%;
    }

    section.b2b .b2b_wrapper .b2b_form .picture {
        width: 100%;
    }

    section.b2b .b2b_wrapper .b2b_form form .form_picture {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    section.b2b .b2b_wrapper .b2b_form form button {
        font: 600 16px/30px "Poppins", sans-serif;
        padding: 6px 24px;
    }
}

/* SEO/i18n intro H1 kept in DOM but visually hidden to match the redesign single-heading layout (about/faq/b2b) */
.redesign-visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
