/* ===================== HERO SECTION ===================== */

strong{
    font-weight: 700;
}

.gpex-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 90px 0;
    color: #ffffff;
    overflow: hidden;
}

/* ---------- Background Video ---------- */
.gpex-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.gpex-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(55%);
}

/* Overlay */
.gpex-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.25));
    z-index: -1;
}

/* ---------- Content ---------- */
.gpex-hero-content {
    animation: fadeUp 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.gpex-badge {
    display: inline-block;
    background: rgba(0, 160, 80, 0.8);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.gpex-title {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.gpex-title span {
    color: #4a9d47;
}

.gpex-subtext {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0.95;
}

/* ---------- CTA Buttons ---------- */
.gpex-cta .gpex-btn-main {
    background: #4a9d47;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.gpex-btn-main:hover {
    background: #28b86a;
    transform: scale(1.03);
}

.gpex-note {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.85;
}


/* ===================== RESPONSIVE ===================== */

@media (max-width: 991px) {
    .gpex-title {
        font-size: 36px;
    }

    .gpex-subtext {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .gpex-hero {
        padding: 60px 0;
        min-height: 85vh;
    }

    .gpex-title {
        font-size: 30px;
    }

    .gpex-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .gpex-subtext {
        font-size: 15px;
    }

    .gpex-btn-main {
        padding: 12px 26px;
        font-size: 15px;
    }
}




/* ===================== TRUST BADGES - FINAL RESPONSIVE FIX ===================== */






  
.gp-stats-section {
    width: 100%;
    background: #d40000;  
    padding: 20px 0;
}

/* FLEX CONTAINER */
.gp-stats-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    gap: 40px;
    flex-wrap: wrap;
}

/* SINGLE BOX */
.gp-stat-box {
    flex: 1;
    min-width: 240px;
}

.gp-stat-box h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -1px;
}

.gp-stat-box p {
    font-size: 15px;
    color: #ffffffd9;
    margin: 0;
}

/* DIVIDER LINES */
.gp-divider {
    width: 1px;
    height: 75px;
    background: rgba(255,255,255,0.25);
}

/* ============================= */
/*      RESPONSIVE BREAKPOINTS   */
/* ============================= */

/* LARGE TABLETS */
@media (max-width: 1200px) {
    .gp-stats-container {
        gap: 30px;
    }
    .gp-stat-box h2 {
        font-size: 44px;
    }
}

/* TABLETS */
@media (max-width: 992px) {
    .gp-divider {
        display: none;
    }

    .gp-stats-container {
        text-align: center;
        justify-content: center;
    }

    .gp-stat-box {
        min-width: 45%;
    }

    .gp-stat-box h2 {
        font-size: 40px;
    }
}

/* MOBILE LANDSCAPE */
@media (max-width: 768px) {
    .gp-stat-box {
        min-width: 100%;
    }

    .gp-stat-box h2 {
        font-size: 36px;
    }

    .gp-stat-box p {
        font-size: 16px;
    }

    .gp-stats-section {
        padding: 55px 0;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .gp-stat-box h2 {
        font-size: 32px;
    }
    .gp-stat-box p {
        font-size: 15px;
    }
}


/* ===================== TRUSTED ROW ===================== */

.gpex-trusted-row {
    text-align: center;
    padding: 40px 0 20px;
    animation: fadeUp 1.2s ease-out;
}

.trusted-title {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0.9;
}

.trusted-flags {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.flag-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.flag-item img {
    /* width: 40px; */
    height: 28px;
    object-fit: cover;
    border-radius: 6px;
    /* box-shadow: 0 3px 7px rgba(0,0,0,0.15); */
}

.flag-item span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
}

/* Hover Animation */
.flag-item:hover {
    transform: translateY(-4px);
}

.trusted-more {
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.7;
    color: #444;
}

/* Responsive */
@media (max-width: 767px) {
    .trusted-title {
        font-size: 17px;
    }

    .trusted-flags {
        gap: 18px;
    }

    .flag-item img {
        /* width: 34px; */
        height: 24px;
    }

    .flag-item span {
        font-size: 12px;
    }
}
















    .canton-banner-link {
        display: block;
        text-decoration: none;
    }

    .canton-banner {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        border-radius: 14px;
        overflow: hidden;
    }

    .canton-banner img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

   
    @media (max-width: 768px) {
        .canton-banner {
            border-radius: 10px;
        }
    }








/* SECTION */
.services-section {
    padding: 100px 0;
    background: url("../images/truck.webp");
    background-size: cover;
    background-position: center;
    position: relative;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(4px);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 2;
}


.services-heading {
    text-align: center;
    margin-bottom: 40px;
}

.services-tag {
    color: #d80000;
    font-weight: 700;
    letter-spacing: 1px;
}

.services-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
}

.services-subtext {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}


.services-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 25px;   
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.services-slider::-webkit-scrollbar { display: none; }


.service-card {
    background: white;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.35s ease;
    scroll-snap-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    width: 300px;       
    min-width: 300px;    
    max-width: 300px;
}


.image-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.3s;
    flex-shrink: 0;
}
.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-link {
      display: block; 
    text-decoration: none;
}


.service-card h3 {
   

  margin-top: 22px;
    font-size: 19px;
    font-weight: 700;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    min-height: 52px;
}


@media (max-width: 768px) {
     .services-slider {
        padding: 0 18px;        
        gap: 18px;             
    }

    .service-card {
        min-width: 88%;       
        max-width: 88%;
        margin: 0 auto;       
        border-radius: 22px;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {

    .services-slider {
        padding: 0 25px;      
        gap: 22px;
    }

    .service-card {
        min-width: 48%;
    }
}


@media (min-width: 1025px) and (max-width: 1399px) {
    .service-card {
        min-width: 31%;
    }
     .services-slider {
        padding: 0 40px;  
        gap: 30px;
    }
}


@media (min-width: 1400px) {
    .service-card {
        min-width: 23%;
    }
}













.infinite-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.infinite-track {
    display: flex;
    gap: 35px;
    width: max-content;
   animation: scrollLoop 55s linear infinite;
}

.infinite-slider-wrapper:hover .infinite-track {
    animation-play-state: paused;
}


@keyframes scrollLoop {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}


.service-card.premium {
    background: #ffffffcc; 
    backdrop-filter: blur(6px);
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    flex-shrink: 0;
    cursor: pointer;
    scroll-snap-align: center;

   
    transition: transform .35s ease, 
                box-shadow .35s ease,
                background .35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    perspective: 1000px;
}

.service-card.premium:hover {
    transform: translateY(-12px) scale(1.05) rotate3d(1,1,0,6deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    background: #ffffffee;
}


.service-card.premium {
    animation: floatPulse 4.2s ease-in-out infinite;
}

@keyframes floatPulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}


.image-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.35s ease;
}
.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card.premium:hover .image-circle {
    transform: scale(1.15);
}




@media(max-width: 768px){
    .infinite-track {
        gap: 18px;
        animation-duration: 75s; 
    }

    .service-card.premium {
        width: 82%;
    }
}







/* SECTION WRAPPER */
.painpoints-section {
    padding: 90px 0;
    background: #f9fafb;
}

/* HEADING */
.pp-heading h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin-bottom: 50px;
}


/* GRID */
.pp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD BOX */
.pp-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
    position: relative;
    animation: fadeUp 0.7s ease forwards;
}

/* Hover Effect */
.pp-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* ICON STYLE */
.pp-icon {
    width: 80px;
    height: 80px;
    background: #ffe6e6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 24px rgba(216,0,0,0.20);
}
.pp-icon i {
    font-size: 32px;
    color: #d80000;
}

/* TEXT */
.pp-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}
.pp-box p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

/* ANIMATION */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE - TABLET */
@media (max-width: 991px) {
    .pp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {

    .painpoints-section {
        padding: 70px 0;
    }

    .pp-heading h2 {
        font-size: 28px;
        padding: 0 15px;
    }

    .pp-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .pp-box {
        padding: 35px 25px;
    }
}






/* MAIN SECTION */
.core-services-modern {
    padding: 0;
    background: #ffffff;
}

/* GRID */
.csm-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.1fr;
    min-height: 580px;
}

/* BLOCK STYLE */
.csm-block {
    position: relative;
    padding: 70px 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

/* IMAGE PANEL */
.csm-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.csm-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.4), rgba(0,0,0,0));
}

.csm-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #D80000;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* DARK PANEL */
.csm-dark {
    background: #4a9d47;
    color: #fff;
}

/* RED PANEL */
.csm-red {
    background: #D80000;
    color: #fff;
}

/* CONTENT */
.csm-content {
    max-width: 380px;
}

.csm-content h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.csm-content h2 span {
    color: #FFEBEB;
}

.csm-icon {
    font-size: 55px;
    margin-bottom: 25px;
    color: #fff;
}

.csm-content ul {
    margin-left: 18px;
    margin-bottom: 35px;
}

.csm-content ul li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* CTA BUTTON */
.csm-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.csm-btn:hover {
    background: #fff;
    color: #D80000;
}

/* ============================
   RESPONSIVE
=============================== */

@media (max-width: 1024px) {
    .csm-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .csm-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .csm-wrapper {
        grid-template-columns: 1fr;
    }
    .csm-block {
        padding: 50px 30px;
    }
    .csm-content h2 {
        font-size: 28px;
    }
    .csm-content ul li {
        font-size: 16px;
    }
}

/* ============================
   ANIMATIONS
=============================== */

.animate-modern .fade-l,
.animate-modern .fade-u,
.animate-modern .fade-r {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.animate-modern.active .fade-l {
    opacity: 1;
    transform: translateX(0);
}

.animate-modern.active .fade-u {
    opacity: 1;
    transform: translateY(0);
}

.animate-modern.active .fade-r {
    opacity: 1;
    transform: translateX(0);
}






/* SECTION WRAPPER */
.hiw-section {
    background: linear-gradient(180deg, #ffffff, #f3f7f7);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.hiw-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}
.hiw-subtitle {
    text-align: center;
    font-size: 18px;
    color: #000;
    margin-bottom: 60px;
}

/* STEPS WRAPPER */
.hiw-steps {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    position: relative;
    padding: 0 20px;
}

/* CONNECTING LINE */
.hiw-steps:before {
    content: "";
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #dce8e9;
    z-index: 1;
}

/* SINGLE STEP */
.hiw-step {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}
.hiw-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ICON */
.hiw-icon {
    width: 70px;
    height: 70px;
    background: #4a9d47;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    /* box-shadow: 0 10px 22px rgba(216,0,0,0.35); */
}
.hiw-icon i {
    font-size: 28px;
    color: white;
}

/* TITLES */
.hiw-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
.hiw-step p {
    font-size: 16px;
    color: #555;
}

/* STEP NUMBER */
.hiw-number {
    position: absolute;
    bottom: -18px;
    right: 50%;
    transform: translateX(50%);
    background: #d40000;
    color: #fff;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

/* CTA BUTTON */
.hiw-btn {
    display: inline-block;
    margin: 60px auto 0;
    padding: 14px 38px;
    background: #D80000;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(216,0,0,0.25);
    transition: 0.25s ease;
}
.hiw-btn:hover {
    background: #b70000;
}

/* RESPONSIVE — TABLET */
@media (max-width: 992px) {
    .hiw-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hiw-step {
        width: 46%;
        margin-bottom: 30px;
    }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 600px) {
    .hiw-step {
        width: 100%;
    }
    .hiw-title {
        font-size: 30px;
    }
}









/* BACKGROUND */
.gpx-compare-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(#061b1f, #0a2f36);
    overflow: hidden;
}
.gpx-compare-bg {
    background: url('../images/shipping-boat.webp') center/cover no-repeat;
    opacity: 0.18;
    position: absolute;
    inset: 0;
}

/* TITLES */
.gpx-title {
    text-align: center;
    font-size: 40px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}

.gpx-subtitle {
    text-align: center;
    color: #dcdcdc;
    margin-bottom: 60px;
}

/* COMPARE CONTAINER */
.gpx-compare-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* CARDS */
.gpx-compare-card {
    width: 420px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: 0.3s ease;
}
.gpx-compare-card:hover {
    transform: translateY(-12px);
}

/* CARD IMAGES */
.gpx-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* HEADERS */
.gpx-card-head {
    padding: 20px;
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
.good-head {
    background: #D80000;
}

/* FEATURES LIST */
.gpx-features {
    padding: 25px 30px;
}
.gpx-features li {
    font-size: 16px;
    color: #222;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.gpx-features i.fa-xmark {
    color: #d80000;
    background: #ffe6e6;
    padding: 6px;
    border-radius: 6px;
}
.gpx-features i.fa-check {
    color: #0a7f00;
    background: #e2ffe2;
    padding: 6px;
    border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gpx-compare-card {
        width: 100%;
    }
    .gpx-title {
        font-size: 32px;
    }
}






.auto-scroll-section {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: #ffffff;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 35s linear infinite;
}

.scroll-content {
    display: flex;
    gap: 90px;
    margin-right: 90px;
}

.scroll-content span {
    font-size: 55px;
    font-weight: 800;
    color: #042B35; /* Your theme dark color */
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
}

.red-icon {
    color: #D80000; /* Theme red */
    font-size: 60px;
}

/* Animation */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-content span {
        font-size: 42px;
    }
    .red-icon {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .scroll-content span {
        font-size: 30px;
    }
    .red-icon {
        font-size: 30px;
    }
}










/* SECTION WRAPPER */
.gp-faq-section-2 {
    display: flex;
    width: 100%;
    background: #d80000;
    color: #fff;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

/* LEFT PANEL */
.gp-faq-left {
    width: 55%;
    padding: 80px 60px;
    position: relative;
}


.gp-faq-title {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0 35px;
}

/* ACCORDION */
.gp-accordion .gp-acc-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 18px 0;
}

.gp-acc-btn {
    width: 100%;
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
}

.gp-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding-right: 40px;
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.6;
}

.gp-acc-item.active .gp-acc-content {
    max-height: 160px;
}

/* RIGHT PANEL (diagonal section) */
.gp-faq-right {
    width: 45%;
    background-image: url("../images/truck.webp");
    background-size: cover;
    background-position: center;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    position: relative;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .gp-faq-section2 { flex-direction: column; }
    .gp-faq-left { width: 100%; padding: 60px 30px; }
    .gp-faq-right { width: 100%; clip-path: none; height: 350px; }

}

@media (max-width: 576px) {
    .gp-faq-title { font-size: 34px; }
   
}
