html {
    padding: 0px;
    margin: 0px;
}

.hero-area {
    background-color: var(--brown-900);
    padding-top: 186px;
    background-image: url(/wp-content/uploads/2026/02/Union7-ezgif.com-png-to-webp-converter-scaled.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: -40px;
    position: relative;
    z-index: 12;
    padding-bottom: 120px;
}


.hero-content {
    max-width: 931px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 110%;
    text-align: center;
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 20px;

}


.hero-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hero-breadcrumbs p {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 140%;
    /* identical to box height, or 14px */
    text-transform: uppercase;
    margin: 0px;
    color: var(--brown-600);

}

.hero-divider-wrapper {
    width: 15px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-divider {


    border-radius: 100px;
    background: var(--brown-600);
    width: 3px;
    height: 3px;
}

.hero-para-container p {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--brown-600);
    margin: 0px;

}

/* ── FAQ Section ───────────────────────────────────────────── */

.faqs-section {
    background: var(--brown-400);
    padding-bottom: 100px;
    padding-top: 120px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    position: relative;
    margin-bottom: -40px;
    z-index: 11;
}

.faqs-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

/* ── Left column ── */

.faqs-left {
    max-width: 548px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 208px;
    justify-content: space-between;
}

.faqs-left h2 {
    margin: 0px;
    color: var(--brown-900);
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0;
}

.faq-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.faq-cta h4 {
    margin: 0px;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    color: var(--brown-500);
}

.faq-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
}

/* ── Right column ── */

.faqs-right {
    max-width: 547px;
    width: 100%;
    padding-top: 64px;
}

/* ── Accordion ── */

.faq-accordion {
    border-top: 1px solid var(--brown-500);
    padding: 24px 0px;
    cursor: pointer;
}

.faq-accordion:first-child {
    border-top: 0px;
    padding-top: 0px;
}

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 25px;
    align-items: flex-start;
}

.faq-accordion-header h3 {
    margin: 0px;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 24px;
    line-height: 115%;
    letter-spacing: 0;
    color: var(--brown-800);
}

.faq-accordion-header-icon {
    transform: rotate(180deg);
    transition: 0.5s ease-out;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.faq-accordion-active .faq-accordion-header-icon {
    transform: rotate(0deg);
}

.faq-accordion-content {
    max-height: 0px;
    overflow: hidden;
    transition: 0.5s ease-out;
}

.faq-accordion-content p,
.faq-accordion-content li {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0;
    color: var(--brown-800);
    margin: 0px;
}

.faq-accordion {
    display: flex;
    gap: 12px;
}

.faq-acc-number span {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 115%;
    color: var(--brown-800);
    display: flex;
    align-items: center;
    margin: 0px;

}

.faqs-right .faqs-main-para {
    margin-bottom: 60px;
    margin-top: 0px;
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    /* or 25px */
    display: flex;
    align-items: center;
    color: var(--brown-800);
}

/* ── Responsive (≤ 1024px) ── */

@media (max-width: 1024px) {
    .faqs-section {
        padding-top: 80px;
        padding-bottom: 60px;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .faqs-container {
        flex-direction: column;
    }

    .faqs-left {
        max-width: 100%;
    }

    .faqs-left h2 {
        font-size: 28px;
        line-height: 115%;
        margin-bottom: 32px;
    }

    .faqs-right {
        padding-top: 0px;
        max-width: 100%;
    }

    .faq-accordion {
        padding-left: 0px;
        padding-right: 0px;
    }

    .faq-accordion-header {
        align-items: flex-start;
    }

    .faq-accordion-header h3 {
        font-size: 18px;
        line-height: 140%;
    }

    .faq-accordion-header-icon {
        display: flex;
        margin-top: 10px;
    }

    .faq-accordion-content p,
    .faq-accordion-content li {
        font-size: 16px;
    }

    .faq-cta.hide-on-desktop {
        display: flex !important;
        flex-direction: row-reverse;
        justify-content: flex-end;
        margin-top: 44px;
    }

    .faq-cta-icon {
        margin-top: 2px;
    }
}


/* ── Logo Slider Section ───────────────────────────────────── */

.logo-slider-section {
    background: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: -40px;
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
    z-index: 7;
}

.logo-slider-container p {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    /* or 25px */
    text-align: center;
    color: var(--brown-800);
    margin-top: 0px;
    margin-bottom: 60px;


}

.logo-slider-wrapper {
    overflow: hidden;
}

.logo-slider-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.logo-slider-block {
    display: flex;
    gap: 140px;
    align-items: center;
    padding-right: 140px;
}

.logo-slider-block img {
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Responsive (≤ 1024px) ── */

@media (max-width: 1024px) {
    .logo-slider-section {
        padding-top: 68px;
        padding-bottom: 60px;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        margin-bottom: -24px;
    }

    .logo-slider-container p {
        margin-bottom: 24px;
    }

    .logo-slider-container p br {
        display: none;
    }

    .logo-slider-block {
        padding-right: 60px;
        gap: 60px;
    }
}



.offers-service-section {
    background: var(--brown-400);
    padding-top: 120px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding-bottom: 120px;
    position: relative;
}

.offer-service-header h2 {

    /* Headline/M */
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    /* or 48px */
    text-align: center;
    /* Color/Brown/900 */
    color: var(--brown-900);
    margin-top: 0px;
    margin-bottom: 12px;


}

.offer-service-header p {
    margin: 0px;
    text-align: center;
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    /* or 25px */
    /* Color/Brown/800 */
    color: var(--brown-800);
}

.offer-service-header {
    margin-bottom: 80px;
}

.offer-service-boxes {
    margin-bottom: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

.offer-service-box {
    padding: 24px 24px 40px;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 16px;

}

.sb-subtitle {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 115%;
    /* identical to box height, or 28px */
    display: block;
    /* Color/Brown/900 */
    color: var(--brown-900);
    margin-bottom: 32px;

}

.sb-price-container p {
    margin: 0px;
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    /* identical to box height, or 58px */

    /* Color/Brown/900 */
    color: var(--brown-900);

}

.sb-price-container {
    margin-bottom: 32px;
}

.sb-price-container span {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    /* or 22px */

    /* Color/Brown/700 */
    color: var(--brown-700);

}

.sb-para p {
    margin: 0px;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    /* or 22px */

    /* Color/Brown/900 */
    color: var(--brown-900);

}

.sb-para {
    margin-bottom: 32px;
}

.sb-cta {
    margin-bottom: 32px;
}

.btn-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--brown-400);
    background: var(--brown-900);
    padding: 12px 24px;
    box-sizing: border-box;
    border-radius: 16px;
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;
}



.btn-light {

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--brown-900);
    background: #FFFFFF;
    padding: 12px 24px;
    box-sizing: border-box;
    border-radius: 16px;
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;

}

.sb-cta .btn-dark,
.sb-cta .btn-light {
    width: 100%;
}

.sb-list span {
    display: block;
    font-family: var(--body-font);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 10px;
    line-height: 140%;
    /* identical to box height, or 14px */
    text-transform: uppercase;

    /* Color/Brown/900 */
    color: var(--brown-900);

}

.sb-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sb-list-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background: #FFFFFF;
    box-shadow: 0px 8px 3px rgba(93, 85, 80, 0.01), 0px 4px 3px rgba(93, 85, 80, 0.04), 0px 2px 2px rgba(93, 85, 80, 0.07), 0px 0px 1px rgba(93, 85, 80, 0.08);
    border-radius: 8px;

}

.sb-list-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sb-list-content p {
    margin: 0px;
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    /* or 22px */

    /* Color/Brown/900 */
    color: var(--brown-900);

}

.offer-box-dark {
    background: var(--brown-900);
}

.offer-box-dark .sb-subtitle,
.offer-box-dark .sb-price-container p,
.offer-box-dark .sb-para p,
.offer-box-dark .sb-list span,
.offer-box-dark .sb-list-content p {
    color: #FFFFFF !important;
}

.offer-services-bottom-content h3 {
    font-family: var(--body-font);
    margin-bottom: 12px;
    margin-top: 0px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--brown-900);
    text-align: center;

}

.offer-services-bottom-content p {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--brown-800);
    text-align: center;

}

.offers-service-section::before {
    content: '';
    background: url('/wp-content/uploads/2026/06/Union.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: -13px;
    width: 280.5px;
    height: 300px;

}


.offers-service-section::after {
    content: '';
    background: url('/wp-content/uploads/2026/06/Union-1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -20px;
    right: -13px;
    width: 280.5px;
    height: 300px;

}



/* ============================================================
   WHAT YOU GET SECTION
   ============================================================ */

/* ─── Base / Desktop ─── */

.what-you-get-section {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: white;
    position: relative;
    z-index: 2;
    margin-bottom: -40px;
}

.what-you-get-container {
    display: flex;
    gap: 96px;
    padding-right: 80px;
}

.what-you-get-left {
    max-width: 36.01%;
    width: 100%;
}

.what-you-get-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 40px;
}

.what-you-get-right {
    max-width: 50.23%;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    align-self: center;
}

.what-you-get-right h2 {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--brown-900);
    margin-bottom: 18px;
    margin-top: 0px;
}

.what-you-get-content {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--brown-500);
    display: flex;
    gap: 12px;
}

.what-you-get-content:last-child {
    margin-bottom: 0px;
}

.wyg-number h3 {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 24px;
    line-height: 115%;
    letter-spacing: 0;
    color: var(--brown-800);
    margin: 0px;
}

.wyg-text h3 {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 24px;
    line-height: 115%;
    letter-spacing: 0;
    color: var(--brown-800);
    margin: 0px;
    margin-bottom: 8px;
}

.wyg-text p {
    font-family: Outfit;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0;
    margin: 0px;
    color: var(--brown-800);
}

/* Visibility helpers used in this section */
.hide-on-desktop {
    display: none;
}


/* ─── Tablet & Mobile (max-width: 1024px) ─── */

@media (max-width: 1024px) {
    .what-you-get-section {
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .what-you-get-container {
        flex-direction: column;
        gap: 40px;
        padding-right: 0px;
    }

    .what-you-get-left {
        max-width: 100%;
        width: auto;
        height: 250px;
    }

    .what-you-get-left img {
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        height: 240px;
    }

    .what-you-get-right {
        padding-top: 0px;
        padding-bottom: 60px;
        max-width: 100%;
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .what-you-get-right h2 {
        margin-bottom: 32px;
        line-height: 115%;
        font-size: 28px;
    }

    .what-you-get-content {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .what-you-get-content:last-child {
        margin-bottom: 0px;
        border: 0px;
        padding: 0px;
    }

    .wyg-number h3 {
        font-size: 18px;
        line-height: 140%;
    }

    .wyg-text h3 {
        margin-bottom: 4px;
        font-size: 18px;
        line-height: 140%;
    }

    .wyg-text p {
        font-size: 16px;
    }

    .hide-on-mobile {
        display: none;
    }

    .hide-on-desktop {
        display: block;
    }
}


/* ─── Tablet only (min-width: 768px and max-width: 1024px) ─── */

@media (min-width: 768px) and (max-width: 1024px) {

    .what-you-get-left img,
    .what-you-get-left {
        height: 350px;
    }

    .what-you-get-left {
        overflow: hidden;
    }

    .what-you-get-left img {
        object-position: top;
    }
}


.wyg-boxes {
    display: flex;
    gap: 24px;
    margin-top: 60px;
}

.wyg-box {
    padding: 24px 24px 40px;
    background: var(--brown-400);
    border-radius: 16px;
    width: 100%;
}

.wyg-box .sb-list-item {
    align-items: flex-start;
}

.wyg-box .sb-list-icon {
    margin-top: 3ppx;
}

.what-you-get-right p {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--brown-800);
    margin: 0px;

}

.what-you-get-content-wrapper {
    margin-top: 60px;
}

.solutions-section .offer-service-boxes {
    justify-content: center;
}


.offers-solution-wrapper {
    max-width: 738px;
    margin: 0 auto;
}

.list-cross .sb-list-content p {
    color: var(--brown-700);
}

.offers-solution-icons {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.ofs-icon-wrapper p {
    color: var(--brown-800);
}

.offers-solution-icons {
    margin-bottom: 24px;
}


.offers-engagements-section {

    padding-top: 120px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding-bottom: 120px;
    position: relative;
    background: white;
    margin-bottom: -40px;
    z-index: 1;
}

.offers-engagements-container {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.offers-engagements-left,
.offers-engagements-right {
    width: 100%;
}

.offers-engagements-left {
    max-width: 357px;
}

.offers-engagements-right {
    max-width: 738px;
}

.offers-engagements-left h2 {
    font-family: var(--body-font);
    margin: 0px;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    color: var(--brown-900);
}


.offers-engagements-right p {
    margin: 0px;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--brown-800);
}


.offers-engagements-boxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 60px;
}

.offers-engagements-box {
    padding: 8px 24px 8px 8px;
    background: var(--brown-900);
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;

}

.offers-eng-content h3 {
    margin: 0px;
    margin-bottom: 8px;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    color: #FFFFFF;

}

.offers-eng-content p {
    font-family: var(--body-font);
    margin: 0px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--brown-600);
}

.offers-eng-img img {

    border-radius: 12px;
    height: 100%;

}

.offers-engagements-section:before {
    content: '';
    background: url('/wp-content/uploads/2026/06/Union.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: -84px;
    top: 40%;
    display: flex;
    align-items: center;
    width: 500px;
    height: 500px;
}


.testimonials-section {
    padding-top: 120px;
    padding-bottom: 120px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: -40px;
    position: relative;
    background-color: var(--brown-400);
}

.testimonaials-sub-heading h2 {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 10px;
    line-height: 140%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--brown-700);
    margin: 0px;
    margin-bottom: 20px;
    text-align: center;
}

.testimonials-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 150px;
}

.testimonial-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid var(--brown-600);
    border-radius: 12px;
    margin-top: 50px;
    cursor: pointer;
}

.testimonial-slide {
    max-width: 1032px !important;
    width: 100%;
}

.testimonial-slide h3 {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 28px;
    line-height: 115%;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0px;
    color: var(--brown-800);
}

.client-meta {
    /* no direct styles in source */
}

.client-img {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.client-img img {
    width: 100%;
    max-width: 100px;
}

.client-meta-content h5 {
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0;
    text-align: center;
    margin: 0px;
    color: var(--brown-800);
    font-weight: 500;
}

.desg-text {
    font-weight: 400;
}

.testimonial-pagination {
    position: unset !important;
    margin-top: 40px;
}

.testimonial-pagination .swiper-pagination-bullet {
    opacity: 1 !important;
    background: var(--brown-500) !important;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--orange) !important;
    width: 24px !important;
    border-radius: 20px !important;
}

/* ── Tablet & Mobile (≤ 1024px) ── */
@media (max-width: 1024px) {
    .testimonials-section {
        padding-top: 68px;
        padding-bottom: 60px;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .testimonaials-sub-heading h2 {
        margin-bottom: 8px;
    }

    .testimonials-wrapper {
        gap: 0px;
    }

    .testimonial-arrow {
        display: none;
    }

    .testimonial-slide h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .client-img {
        margin-bottom: 4px;
    }

    .testimonial-pagination {
        margin-top: 32px;
    }
}


.bottom-cta-section img {
    width: 100%;
    margin-bottom: -60px;
    height: unset !important;
}

.bottom-cta-wrapper {
    background-color: var(--orange);
    padding-top: 140px;
    background-image: url('/wp-content/uploads/2026/02/Union6-ezgif.com-png-to-webp-converter-scaled.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 120px;
}

.bottom-cta-container h2 {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 24px;
    line-height: 115%;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 0px;
    color: #FFFFFF;
}


.bottom-cta-container h2 p {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
}


/* ── Tablet (768px – 1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
    .bottom-cta-section .hide-on-mobile {
        display: block;
    }

    .bottom-cta-section .hide-on-desktop,
    .bottom-cta-container h2 br {
        display: none;
    }
}

/* ── Mobile & Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .bottom-cta-section img {
        margin-bottom: -40px;
    }

    .bottom-cta-container h2 {
        font-size: 28px;
        line-height: 115%;
        margin-bottom: 4px;
    }

    .bottom-cta-container h2 br {
        display: none;
    }
}

/* ── Mobile only (≤ 767px) ── */
@media (max-width: 767px) {
    .bottom-cta-wrapper {
        padding-top: 80px;
        padding-bottom: 80px;
        background-image: url('/wp-content/uploads/2026/02/Union-12.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.bottom-cta-img-wrapper img {
    height: 100%;
    border-radius: 40px;
    margin-bottom: 20px;
    width: unset !important;
}

.bottom-cta-img-wrapper {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bottom-cta-container .btn-light {
    margin: unset !important;
}


.btn-light {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--brown-900);
    background: #FFFFFF;
    padding: 12px 24px;
    box-sizing: border-box;
    border-radius: 16px;
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;
}

.btn-container {
    display: flex;
    gap: 16px;
    flex-direction: row-reverse;
    justify-content: center;
}



.btn-white {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
    color: white;
    background: transparent;
    padding: 12px 24px;
    box-sizing: border-box;
    border-radius: 16px;
    text-decoration: none;
    width: fit-content;

    border: 1px solid white;
}


.bottom-cta-img-wrapper p {
    font-family: var(--body-font);
    color: #FFFFFF;
    margin: 0px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;

}

.gt-container p {
    font-family: var(--body-font);
    color: #FFFFFF;
    margin: 0px;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    text-align: center;

}

.gt-container p a {
    text-decoration: none;
    color: #FFFFFF;
}

.general-terms-section {
    background: var(--brown-800);
    padding: 20px 0px;
}



@media(max-width:1024px) {
    .hero-content h1 {
        font-size: 40px;
        line-height: 120%;
        margin-top: 16px;
        margin-bottom: 16px;

    }

    .hero-area {
        background-size: cover;
        background-image: url('/wp-content/uploads/2026/06/Union-3.png');
        padding-top: 128px;
        padding-bottom: 100px;
        margin-bottom: -24px;
    }

    .header-logo img {
        filter: brightness(100);
        width: 43px;
        height: 44px;
    }

    .header-menu-mobile svg path {
        fill: white;
    }

    .logo-slider-block img {
        height: 32px !important;
        width: 100px;
    }

    .offers-service-section::before {
        display: none;
    }

    .offer-service-header h2 {
        font-size: 28px;
        line-height: 115%;
        text-align: left;
        margin-bottom: 16px;

    }

    .offer-service-header p {
        font-size: 16px;
        line-height: 140%;
        text-align: left;

    }

    .offer-service-header p br,
    .offer-service-header h2 br {
        display: none;
    }

    .offer-service-boxes {
        flex-direction: column;
        gap: 16px;
    }

    .offer-service-box {
        padding: 16px 16px 32px;
        width: 100%;
    }

    .sb-subtitle {
        margin-bottom: 16px;
    }

    .offers-service-section::after {
        display: none;
    }

    .offer-services-bottom-content h3,
    .offer-services-bottom-content p {
        text-align: left;
    }

    .offer-services-bottom-content h3 {
        font-size: 18px;
        line-height: 140%;

    }

    .offer-services-bottom-content p {
        font-size: 16px;
        line-height: 140%;

    }

    .offers-service-section {
        padding-top: 84px;
        padding-bottom: 60px;
    }

    .wyg-boxes {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;

    }

    .wyg-box {
        width: auto !important;
        padding: 16px 16px 32px;

    }

    .offer-service-header {
        margin-bottom: 60px;
    }

    .offers-solution-icons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }

    .offer-services-bottom-content p {
        font-size: 12px;
        line-height: 140%;

    }

    .offers-solution-icons p {
        font-size: 14px;
        line-height: 140%;

    }

    .offers-engagements-section {
        padding-bottom: 60px;
        padding-top: 84px;
    }

    .offers-engagements-container {
        flex-direction: column;
        gap: 0px;
    }

    .offers-engagements-left h2 {
        font-size: 28px;
        line-height: 115%;
        margin-bottom: 16px;

    }

    .offers-engagements-left h2 br {
        display: none;
    }

    .offers-engagements-right p {
        font-size: 16px;
        line-height: 140%;
    }

    .offers-engagements-box {
        flex-direction: column;
        gap: 20px;
    }

    .offers-eng-img,
    .offers-eng-img img {
        width: 100%;
    }

    .offers-eng-img img {
        max-height: 200px;
        object-fit: cover;
    }

    .offers-engagements-box {
        width: auto;
        padding: 8px;
    }

    .offers-eng-content {
        padding: 0px 8px 16px;
    }

    .offers-engagements-section:before {
        display: none;
    }
}

@media (max-width: 1024px) {
  
    /* .offers-engagements-slider .swiper-wrapper {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
    } */



    .offers-engagements-pagination {
        position: unset !important;
        margin-top: 12px;
        display: flex;
        justify-content: center;
    }

    .offers-engagements-pagination .swiper-pagination-bullet {
        opacity: 1 !important;
        background: var(--brown-500) !important;
    }

    .offers-engagements-pagination .swiper-pagination-bullet-active {
        background: var(--orange) !important;
        width: 24px !important;
        border-radius: 20px !important;
    }

     .offers-engagements-boxes {
        overflow: hidden;
    }

    .offers-engagements-slider {
        overflow: hidden;
        width: 100%;
    }

    .offers-engagements-box 
    {
        max-width: 335px;
    }

    .bottom-cta-img-wrapper
    {
        margin-bottom: 32px;
    }
    .btn-container
    {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bottom-cta-container .btn-light,
    .bottom-cta-container .btn-white
    {
        width: 100%;
    }
}

/* Hide pagination on desktop */
@media (min-width: 1025px) {
    .offers-engagements-pagination {
        display: none;
    }
}

.offers-engagements-slider
{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 1024px) {
    /* Owl dots to match testimonial swiper pagination */
    .offers-engagements-boxes .owl-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 24px;
    }

    .offers-engagements-boxes .owl-dot span {
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 20px;
        background: var(--brown-500);
        transition: background 0.3s ease, width 0.3s ease;
        margin: 0 !important;
    }

    .offers-engagements-boxes .owl-dot.active span {
        background: var(--orange);
        width: 24px;
    }
}

.show-on-mobile-engagements {
        display: none !important;
        margin-top: 60px !important;
    }

@media (max-width: 786px) {
    .hide-on-mobile-engagements {
        display: none;
    }
    .show-on-mobile-engagements {
        display: flex !important;
        gap: 0px;
    }
}



.offer-services-bottom-content{
    max-width: 760px;
    margin: 0 auto;
}