﻿body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.page-wrap {
    width: 100%;
    overflow-x: hidden;
}
.containe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 7rem;
    background: #fff;
    width: 1450px; 
    margin: 0 auto;
    padding-left: 17px;
    padding-right: 57px;
}

.content-section {
    max-width: 50%;
}

.ZH {
    font-size: 59px;
    font-weight: 600;
    line-height: 5rem;
    margin-top: -16rem;
    margin-left: 3rem;
    color: #3b3b3b;
    font-family: 'Lato';
}

.content-section p {
    margin-left: 4rem;
    font-size: 23px;
    color: #3b3b3b;
    line-height: 34px;
    margin-bottom: 25px;
    font-family: 'Lato';
}

.cta-button {
    margin-left: 4rem;
    padding: 12px 35px;
    font-size: 1.4rem;
    border: 1px solid #3b3b3b;
    border-radius: 5px;
    background: #fff;
    color: #3b3b3b;
    text-decoration: none;
    display: inline-block;
    font-family: 'Lato';
}

    .cta-button:hover {
        background: #3b3b3b;
        color: #fff;
    }

.image-section {
    width: 40rem;
}

    .image-section img {
        width: 92%;
        height: auto;
    }

.grc-section {
    display: flex;
    gap: 20px;
    background: #384f66;
    color: #fff;
    border-radius: 10px;
    padding: 34px;
    max-width: 49rem;
    margin: -220px auto 0;
    margin-left: 61px;
}

.grc-left h2 {
    font-size: 27px;
    margin-bottom: 14px;
    white-space: nowrap;
    color: #f3f3f3;
}

.grc-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
}

.grc-item {
    width: 20rem;
    font-size: 17px;
    padding-bottom: 5px;
    border-bottom: 3px solid rgba(255,255,255,.5);
}
@media (max-width: 1440px) {
    .containe {
        width: 100%;
        padding-left: 20px;
        padding-right: 8px;
    }
}

@media (max-width: 1399px) {
    .containe {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .image-section {
        width: 34rem;
    }

    .ZH {
        margin-top: -12rem;
    }
}

@media (max-width: 1024px) {
    .containe {
        flex-direction: column;
        text-align: center;
        padding-top: 9rem;
        width: 130%;
        margin-left: -10.5rem;
    }

    .content-section {
        max-width: 100%;
    }

    .ZH {
        margin: 0 -57px 20px;
        font-size: 70px;
        line-height: 5.5rem;
        text-align: left;
        margin-top: 1rem;
        font-family: 'Lato';
        font-weight: 600;
    }

    .content-section p {
        font-size: 35px;
        line-height: 51px;
        text-align: justify;
        margin-left: -4rem;
        font-family: 'Lato';
    }

    .cta-button {
        margin-left: -31rem;
        margin-top: 15px;
        font-size: 33px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .image-section {
        width: 100%;
        margin-top: 40px;
    }

        .image-section img {
            width: 80%;
        }

    .grc-section {
        margin: 40px auto 0;
        max-width: 90%;
        padding: 30px;
        flex-direction: column;
        display: none;
    }

    .grc-item {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .containe {
        padding: 3rem 15px;
    }

    .ZH {
        font-size: 32px;
        line-height: 2.6rem;
    }

    .content-section p {
        font-size: 16px;
        line-height: 24px;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 10px 28px;
    }

    .image-section img {
        width: 100%;
    }

    .grc-left h2 {
        font-size: 22px;
        text-align: center;
        white-space: normal;
    }

    .grc-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .grc-item {
        font-size: 15px;
    }
}







/*2nd section*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.grc-container {
    width: 100%;
    max-width: 1320px; 
    margin: -3rem auto 0;
    padding: 0 24px;
}


.grc-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.grc-text {
    flex: 0 0 45%;
}

.grc-image {
    flex: 0 0 52%;
    text-align: center;
}

    .grc-image img {
        max-width: 100%;
        height: auto;
    }

.grc-text .ZT {
    font-size: 2.2rem;
    line-height: 3rem;
    font-weight: 600;
    color: #3b3b3b;
    text-align: left;
    font-family: 'Lato';
}

.grc-text .ZN {
    font-size: 18px;
    line-height: 30px;
    color: #3b3b3b;
    text-align: justify;
    font-family: 'Lato';
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff;
    padding: 9px 24px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

    .custom-btn svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
    }

    .custom-btn:hover {
        background: #000;
        color: #fff;
    }

/*Responsive*/
@media (max-width: 1024px) {
    .grc-container {
        max-width: 95%;
        padding: 0 20px;
    }

    .grc-row {
        gap: 40px;
    }

    .grc-text .ZT {
        font-size: 2.2rem;
    }


    .grc-row {
        flex-direction: column;
        text-align: center;
    }

    .grc-text,
    .grc-image {
        width: 100%;
    }

        .grc-text .ZT {
            text-align: left;
            font-size: 3.5rem;
            line-height: 4rem;
            font-family: 'Lato';
        }

        .grc-text .ZN {
            text-align: justify;
            font-size: 35px;
            line-height: 3.8rem;
            font-family: 'Lato';
        }

        .grc-image img {
            max-width: 105%;
            margin-top: 30px;
            margin-left: -1.5rem;
        }
    .custom-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #3b3b3b;
        color: #fbfbfb;
        padding: 17px 26px;
        border-radius: 30px;
        font-size: 28px;
        text-decoration: none;
        cursor: pointer;
        margin-left: -39rem;
    }

}


@media (max-width: 767px) {
    .grc-container {
        margin-top: 0;
        padding: 0 16px;
    }

    .grc-text .ZT {
        font-size: 1.7rem;
        line-height: 2.4rem;
    }

    .grc-text .ZN {
        font-size: 15px;
        line-height: 24px;
    }

    .custom-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .grc-image img {
        max-width: 100%;
    }
}




/*3rd section*/

.core-section {
    background-color: #f9fcff;
    padding: 60px 20px;
    overflow-x: hidden;
}

    .core-section h2 {
        text-align: center;
        font-size: 2.2rem;
        font-weight: 600;
        line-height: 1.3;
        width: 100%;
        font-family: 'Lato';
    }

  .core-section h2 span {
            color: #d3d3d3;
        }

.core-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px; 
    margin: 0 auto;
    padding: 10px;
}

.core-box {
    padding: 20px;
    background: #f9fcff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 180px;
    transition: all 0.3s ease;
    border: 1px solid #E3E3E3;
}

    .core-box img {
        width: 2rem;
    }

.core-title {
    font-size: 25px;
    font-weight: 600;
    color: #3b3b3b;
    margin: 16px 0 6px;
    font-family: 'Lato';
}

.core-desc,
.core-box p {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    text-align: justify;
    font-family: 'Lato';
}

@media (max-width: 1199px) {
    .core-grid {
        max-width: 100%;
        padding: 0 20px;
    }

    .core-title {
        font-size: 20px;
    }
}


@media (max-width: 1024px) {
    .core-grid {
        grid-template-columns: 1fr;
        max-width: 1000px;
        margin-left: -1rem;
    }
    .core-section h2 {
        text-align: left;
        margin-bottom: 40px;
        font-size: 3.5rem;
        font-weight: 600;
        line-height: 4.5rem;
        /* font-family: unset; */
        width: 100%;
        margin-left: 0px;
        font-family: 'Lato';
    }
    .core-box {
        text-align: center;
        align-items: center;
    }

        .core-box p {
            font-size: 35px;
            text-align: justify;
            line-height: 3.2rem;
            color: #3b3b3b;
            font-family: 'Lato';
        }

    .core-title {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        font-family: 'Lato';
    }
    .core-box img {
        width: 4rem;
    }
}

@media (max-width: 767px) {
    .core-section {
        padding: 40px 15px;
    }

        .core-section h2 {
            font-size: 26px;
        }

    .core-grid {
        gap: 15px;
    }

    .core-title {
        font-size: 20px;
    }

    .core-box p {
        font-size: 15px;
        line-height: 24px;
    }
}




/*PLATFORM-SECTION*/
.platform-section {
    border-radius: 26px;
    padding: 10px 8%;
    color: #fff;
    margin: 80px auto;
    width: 1300px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.platform-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    margin-right: 0rem;
    color: #3b3b3b;
    line-height: 3.5rem;
    font-family: 'Lato';
    letter-spacing: 0.5px;
}

.platform-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 60px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .platform-slider::-webkit-scrollbar {
        display: none;
    }

.platform-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    scroll-snap-align: start;
    gap: 80px;
}

.platform-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .platform-image img {
        width: 70%;
        height: auto;
        max-width: 500px;
        border-radius: 10px;
    }

.platform-text {
    flex: 1;
}

    .platform-text h3 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 12px;
        line-height: 1.3;
        font-family: 'Lato';
        font-weight: 600;
    }

    .platform-text p {
        font-size: 18px;
        color: #3b3b3b;
        text-align: justify;
        line-height: 1.7rem;
        font-family: 'Lato';
    }

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.15);
    color: #3b3b3b;
    border: none;
    font-size: 2rem;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 10;
}

    .scroll-arrow:hover {
        background: rgba(0, 0, 0, 0.25);
    }

    .scroll-arrow.left {
        left: 15px;
    }

    .scroll-arrow.right {
        right: 15px;
    }

/* 📱 Mobile & Tablet Responsive */
@media (max-width: 1024px) {
    .platform-section {
        width: 95%;
        height: auto;
        padding: 40px 20px;
        margin-top: 7rem;
    }
    .platform-title {
        text-align: left;
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 25px;
        color: #3b3b3b;
        line-height: 4.5rem !important;
        font-family: 'Lato';
    }
    .platform-slider {
        flex-direction: column;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .scroll-arrow {
        display: none; 
    }

    .platform-item {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .platform-text h3 {
        font-size: 3.5rem;
        text-align: left;
        line-height: 4rem;
        font-weight: 600;
        font-family: 'Lato';
    }

    .platform-text p {
        font-size: 35px;
        text-align: justify;
        line-height: 3.3rem;
        margin-top: 2rem;
        font-family: 'Lato';
    }
    .platform-image img {
        width: 100%;
        height: auto;
        max-width: 671px;
        border-radius: 10px;
    }
}




/*Section*/

.section {
    display: flex;
    gap: 20px;
    background-color: #ffffff;
    padding: 50px 70px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.image-container {
    flex: 0 0 350px;
}

    .image-container img {
        width: 350px;
        height: 350px;
        object-fit: cover;
        display: block;
    }

.right-container {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.content-div {
    flex: 1;
    background-color: #f9f9f9;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 350px; 
    border-radius: 8px;
}

.heading-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px; 
}

    .heading-icon i {
        font-size: 38px; 
        color: #4CAF50;
    }

    .heading-icon img {
        width: 3rem;
    }



.ZGR {
    font-size: 2rem;
    line-height: 3rem;
    color: #3b3b3b;
    font-weight: 600;
    margin: 0;
    margin-top: 1rem;
    font-family: 'Lato';
}

.ZZR {
    font-size: 18px;
    color: #3b3b3b;
    margin-bottom: 20px;
    text-align: justify;
    font-family: 'Lato';
}

.Zh {
    text-align: left;
    font-size: 2.2rem;
    font-weight: 600;
    color: #3b3b3b;
    font-family: 'Montserrat';
    line-height: 3rem;
    margin-left: 6rem;
    margin-top: -2rem;
}

.with-line {
    border-left: 3px solid #3b3b3b; 
    padding-left: 20px;
    margin-left: 6rem;
    margin-top: 1rem;
}

.Zp {
    text-align: left;
    font-size: 17px;
    margin-bottom: 2rem;
    font-family: 'Montserrat';
}

/* 📱 Mobile & Tablet Responsive */
@media (max-width: 1024px) {
    .section {
        flex-direction: column !important;
        padding: 30px 20px !important;
        gap: 30px !important;
        width: 95%;
    }

    .image-container {
        flex: unset !important;
        text-align: center;
    }

        .image-container img {
            width: 100% !important;
            max-width: 913px !important;
            height: auto !important;       
            margin-left: 0.5rem;
        }

    .right-container {
        flex-direction: column !important;
        gap: 20px !important;
        width: 96% !important;
        margin-left: 1rem;
        margin-top: 23rem;
        border-radius: 3rem;
    }

    .content-div {
        width: 100% !important;
        height: auto !important; 
        padding: 20px !important;
        text-align: center !important;
    }

    .heading-icon {
        align-items: center !important;
    }
        .heading-icon img {
            width: 5rem;
        }

    .ZGR {
        font-size: 3.5rem !important;
        line-height: 4.5rem !important;
        text-align: center !important;
        font-weight: 600;
    }

    .ZZR {
        font-size: 35px !important;
        line-height: 4.5rem !important;
        color: #3b3b3b;
        text-align: justify;
    }

}




/* Why Choose Our GRP Solution */
.grc-why-section {
    padding: 70px 20px;
}

.grc-why-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.grc-text {
    width: 50%;
    margin-bottom: 5rem;
}

.grc-heading {
    font-size: 2.2rem;
    line-height: 3rem;
    font-weight: 600;
    color: #3b3b3b;
    margin-bottom: 40px;
    white-space: nowrap;
    padding-left: 20px;
    font-family: 'Lato';
}


.grc-list {
    list-style: none;
    padding-left: 30px;
    margin: 0;
    position: relative;
}

    .grc-list::before {
        content: "";
        position: absolute;
        left: 27px;
        top: -11px;
        width: 4px;
        height: 114%;
        background: #3b3b3b;
    }

    .grc-list li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 2rem;
        color: #3b3b3b;
        font-family: 'Lato';
    }

        .grc-list li::before {
            content: "";
            position: absolute;
            left: -6px;
            top: 8px;
            width: 10px;
            height: 10px;
            background: #000;
            border-radius: 50%;
        }

    .grc-list strong {
        font-weight: 700;
    }

.grc-image-wrap {
    width: 50%;
}

    .grc-image-wrap img {
        width: 100%;
        height: auto;
        border-radius: 18px;
        display: block;
    }

@media (max-width: 1024px) {
    .grc-why-container {
        flex-direction: column;
        text-align: center;
        width: 95%;
    }

    .grc-text,
    .grc-image-wrap {
        width: 100%;
    }

    .grc-heading {
        font-size: 3.5rem;
        line-height: 4.5rem;
        text-align: left;
        font-family: 'Lato';
    }

    .grc-list {
        padding-left: 25px;
        text-align: left;
    }
        .grc-list li {
            position: relative;
            padding-left: 26px;
            margin-bottom: 20px;
            font-size: 35px;
            line-height: 60px;
            color: #3b3b3b;
            font-family: unset;
        }

       .grc-list li::before {
                content: "";
                position: absolute;
                left: -2px;
                top: 8px;
                width: 11px;
                height: 11px;
                background: #000;
                border-radius: 50%;
            }
        .grc-list::before {
            content: "";
            position: absolute;
            left: 27px;
            top: -11px;
            width: 4px;
            height: 102%;
            background: #3b3b3b;
        }
}

/* MOBILE */
@media (max-width: 576px) {
    .grc-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .grc-list li {
        font-size: 16px;
        line-height: 24px;
    }

    .grc-list::before {
        left: 5px;
    }

    .grc-list li::before {
        top: 6px;
        width: 8px;
        height: 8px;
    }
}



/* 📱 Mobile & Tablet Responsive */
@media (max-width: 1024px) {
    .Zh {
        font-size: 3rem !important;
        line-height: 4rem !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        text-align: justify !important;
    }

    .with-line {
        border-left: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-top: 1rem !important;
        text-align: center !important;
    }

    .Zp {
        font-size: 27px !important;
        line-height: 3rem !important;
        text-align: justify !important;
        margin-top: 0rem;
    }

    .row.align-items-center {
        flex-direction: column-reverse !important; 
    }

    .last-paragraph-no-margin img {
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .padding-twelve-left {
        padding: 0 !important;
        text-align: center !important;
    }
}


/* What's Next Section */
.whats-next {
    text-align: center;
    margin: 0px auto 100px;
    max-width: 1300px;
    padding: 0 20px;
}

    .whats-next h2,
    .whats-next p {
        text-align: left;
    }

    .whats-next h2 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 10px;
        font-weight: 600;
        font-family: 'Lato';
    }

    .whats-next p {
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 40px;
        margin-left: 0;
        font-family: 'Lato';
    }

/* Grid of boxes */
.next-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.next-box {
    border: 1px solid #3b3b3b;
    border-radius: 10px;
    padding: 30px 20px;
    background: #fff;
    transition: all 0.3s ease;
}

    .next-box h3 {
        font-size: 2.2rem;
        margin-bottom: 12px;
        color: #3b3b3b;
        font-weight: 600;
        font-family: 'Lato';
    }

    .next-box p {
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'Lato';
    }

    .next-box a {
        font-family: 'Lato', sans-serif;
        font-size: 14px;
        color: #3b3b3b;
        text-decoration: underline;
        font-weight: 600;
    }

    .next-box:hover {
        border: none;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        transform: translateY(-5px);
    }


/* ----- Tablet (max-width: 1024px) ----- */
@media only screen and (max-width: 1024px) {
    .whats-next {
        margin: 100px auto 60px;
        padding: 0 15px;
        max-width: 95%;
    }

        .whats-next h2 {
            font-size: 3.5rem;
            text-align: left;
            margin-left: 0rem;
            font-weight: 600;
            margin-bottom: 20px;
            font-family: 'Lato';
        }

        .whats-next p {
            font-size: 35px;
            text-align: left;
            margin-left: 0rem;
            font-family: 'Lato';
            line-height: 3.5rem;
        }

    .next-grid {
        height: 61rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 44rem;
        margin-left: 6rem;
    }

    .next-box {
        padding: 35px 26px;
        width: 58rem;
        margin-left: -5rem;
    }

        .next-box h3 {
            font-size: 3.5rem;
            margin-bottom: 12px;
        }

        .next-box p {
            font-size: 35px;
            text-align: center;
        }
        .next-box a {
            font-family: 'Lato', sans-serif;
            font-size: 23px;
            color: #3b3b3b;
            text-decoration: underline;
            font-weight: 600;
        }
}

@media only screen and (max-width: 600px) {

    .whats-next {
        margin: 60px auto 40px;
        padding: 0 10px;
    }

        .whats-next h2 {
            font-size: 2.8rem;
            text-align: left;
            margin-left: 6rem;
            font-weight: 600;
        }

        .whats-next p {
            font-size: 28px;
            text-align: left;
            margin-left: 6rem;
        }

    .next-grid {
        height: 61rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 44rem;
        margin-left: 6rem 90px;
    }

    .next-box {
        width: 100%;
        margin-bottom: 15px;
        padding: 15px 12px;
    }

        .next-box h3 {
            font-size: 3rem;
        }

        .next-box p {
            font-size: 25px;
            text-align:center;
        }
        .next-box a {
            font-family: 'Lato', sans-serif;
            font-size: 23px;
            color: #3b3b3b;
            text-decoration: underline;
            font-weight: 600;
        }
}

/*Last Section*/
.action-section {
    background: #B8F2E6;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
}


.action-container {
    text-align: left;
    font-family: unset;
}


    .action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 4.4rem;
        white-space: nowrap;
        font-family: 'Lato';
    }

    .action-container p {
        font-size: 18px;
        margin-top: -23px;
        color: #3b3b3b;
        font-family: 'Lato';
    }


.action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.action-card {
    background: #fff;
    display: flex;
    align-items: center; 
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 6.2rem; 
}

    .action-card:hover {
        box-shadow: none;
        transform: translateY(2px);
    }

.icon-boxs {
    width: 48px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: 6%;
}

.vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin: 0 10px;
}

.card-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0px 3px 18px;
    color: #3b3b3b;
    font-family: unset;
}

.card-content p {
    font-size: 18px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
}

/* Mobile & Tablet */
@media (max-width: 1024px) {
    .action-section {
        padding: 25px 15px;
        margin: 30px auto;
        max-width: 95%;
    }

    .action-container h2 {
        font-size: 4.5rem;
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .action-container p {
        font-size: 35px;
        text-align: justify;
        margin-top: 18px;
        color: #3b3b3b;
        /* margin-left: 3rem; */
        line-height: 3rem;
    }

    .action-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .action-card {
        width: 100%;
        max-width: 900px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 17px 20px;
        height: auto;
        border-radius: 11px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .icon-boxs {
        width: 68px;
        height: 68px;
        margin: 0 10px 0 15px;
        flex-shrink: 0;
    }

    .vertical-line {
        display: flex;
        height: 91px;
        margin: 0 10px;
    }

    .card-content {
        text-align: left;
    }

        .card-content h3 {
            font-size: 45px;
            color: #3b3b3b;
            margin-left: 0.5rem;
            margin-top: 1.1rem;
        }

        .card-content p {
            font-size: 29px;
            margin-top: 12px;
            color: #3b3b3b;
            white-space: nowrap;
            margin-left: 0.5rem;
            font-weight: 500;
        }
}



















