﻿:root {
    --green: #8abf46;
    --light-gray: #f7f7f7;
    --sidebar-bg: #ffffff;
    --related-links-color: #8abf46;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.event-content {
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;

}


.gverse-ad {
    background-image: url('/Content/images/Gradient.png'); /* Replace with your actual image name */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 30px;
    font-family: Arial, sans-serif;
    color: white;
    margin-left: -3rem !important;
    margin-right: -3rem !important;
    margin-bottom: -4rem !important;
}

    .gverse-ad.white-bg {
        background-image: url('/Content/images/Gradient_White.png');
    }

    .gverse-ad.green-bg {
        background-image: url('/Content/images/Gradient.png');
    }

    .gverse-ad.black-bg {
        background-image: url('/Content/images/Gradient_Black.png');
    }

.right-content.white-text h1{
    color: #8EC646 !important;
}


.right-content.white-text .demo-button {
    background-color: #8EC646 !important;
    color: white
}


.right-content.white-text .subheading,
.right-content.white-text .booth-info {
    color:black !important;
}


.right-content.black-text h1 {
    color: #8EC646;
}

.right-content.black-text .demo-button {
    background-color: #8EC646;
    color:black
}

.right-content.black-text .subheading,
.right-content.black-text .booth-info {
    color: white;
}


.right-content.green-text h1 {
    color: #ffffff;
}


.right-content.green-text .demo-button{
    background-color: white;
    color:black
}

.right-content.green-text .subheading,
.right-content.green-text .booth-info {
    color: #ffffff;
}


.grid-container-event {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0rem;
    border-radius: 10px;
    /*flex-wrap: wrap;*/
    align-items: center;
    margin: 0 auto;
    gap: 40px;
}

.left-image img {
    width: 100%;
    max-width: 476px;
    height: 37rem;
}


.subheading {
    margin: 1rem 0;
    line-height: 2.3rem;
    margin-bottom: 2rem;
}

.booth-info {
    font-weight: bold;
    margin-bottom: 2.5rem;
}

.demo-button {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 1.8rem 8.5rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

   /* .demo-button:hover {
        background-color: #f1f1f1;
        transform: translateY(-2px);
    }*/

.sidebar-left li a.active {
    font-weight: bold;
    color:black
}

* {
    box-sizing: border-box;
}


/* Update the video thumbnail and iframe styling */
.video-thumbnail {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    max-width: 700px;
    width: 100%;
    margin: 0 auto; /* Center the video */
}

    .video-thumbnail img {
        width: 100%;
        display: block;
        border-radius: 20px;
        transition: opacity 0.3s ease;
    }

    /* Hide play button when no video URL */
    .video-thumbnail.no-video .play-button {
        display: none;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10%;
    padding: 23px;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
}

    .play-button:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translate(-50%, -50%) scale(1.05);
    }

/* Style the iframe to match the thumbnail */
#if-id {
    border-radius: 20px;
    margin: 0 auto;
    display: none; /* Initially hidden */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1006px !important;
    width: 100% !important;
    height: 560px !important;
    margin-top: -15rem !important;
}

    /* When iframe is active (playing) */
    #if-id[style*="display: block"] {
        display: block !important; /* Override inline style */
    }

        /* Hide thumbnail when iframe is active */
        #if-id[style*="display: block"] + .video-thumbnail {
            display: none;
        }


/*a {
    color: #757575 !important
}*/

section.intro {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}



/*body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--light-gray);
    color: #222;
}
*/
.container-main {
    display: grid;
    grid-template-columns: 220px 1fr 180px;
    grid-template-rows: auto;
    gap: 20px;
    padding: 20px;
    max-width: 2400px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Sidebar */
.sidebar-left {
    padding: 20px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--green);
}

    .sidebar-left h3 {
        margin-top: 0;
        font-weight: 700;
        font-size: 16px;
        color: var(--green);
        margin-bottom: 15px;
    }

    .sidebar-left ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
        color: #444;
        font-weight: 400;
        font-size: 13px;
    }

        .sidebar-left ul li {
            margin-bottom: 8px;
        }

            .sidebar-left ul li a {
                color: #888888;
                text-decoration: none;
                font-weight: 400;
            }

                .sidebar-left ul li a:hover {
                    text-decoration: underline;
                }

         /*   .sidebar-left ul li:first-child a {
                font-weight: 700;
                color: #000;
            }
*/
           

/* Main content */
.content-main {
    background: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.breadcrumb {
    font-size: 12px;
    color: #757575 !important;
    margin-bottom: 20px;
    user-select: none;
    background-color: transparent !important
}


    .breadcrumb a {
       color: #757575
    }

    .breadcrumb span.current-page {
        font-weight: 600;
        color: #000;
    }

.intro h1 {
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 15px;
    /*text-align: center;*/
    align-self: baseline;
}

.intro p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    /*   max-width: 650px;*/
    max-width: 100% !important;
    margin: 0 auto 25px;
    text-align: left;
    color: #222;
}

.intro button {
    display: block;
    margin: 0 auto;
    background-color: var(--green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .intro button:hover {
        background-color: #7cb038;
    }

/* Features grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 180px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
    transition: background-color 0.3s ease;
}

    .feature-item.green {
        background-color: var(--green);
        color: white;
    }

    .feature-item svg,
    .feature-item img {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
        fill: currentColor;
    }

    .feature-item h4 {
        margin: 0 0 10px;
        font-weight: 600;
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
        line-height: 1.4;
        color: inherit;
        margin: 0;
    }

/* Related links */
.related-links {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

    .related-links h3 {
        font-weight: 700;
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .related-links ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
        color: #444;
        font-weight: 400;
        font-size: 13px;
    }

        .related-links ul li {
            margin-bottom: 8px;
        }

            .related-links ul li a {
                color: #000;
                text-decoration: none;
                font-weight: 400;
                font-size: 14px;
            }

                .related-links ul li a:hover {
                    text-decoration: underline;
                }


/**Section 2*/

.geology-suite {
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
}



    .geology-suite h2 {
        font-size: 25px;
        margin-bottom: 6rem;
        font-weight: 400;
        margin-top:6rem
    }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    padding: 64px 21px 21px 21px;
    color: #fff;
    text-align: left;
}

    .card .icon {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .card.green {
        background-color: transparent;
        color:black
    }

        .card.green h3 {
            font-size: 20px;
            padding-bottom: 2rem !important;
            font-weight: 400;
            min-height: 6rem;
        }

        .card.green p {
            font-size: 14px;
            padding: 0px !important;
        }

    .card.light {
        background-color: #f1f2f3;
        color: #000;
    }

        .card.light h3 {
            font-size: 20px;
            padding-bottom: 2rem !important;
            font-weight: 400;
            min-height: 6rem;
        }

        .card.light p {
            font-size: 14px;
            padding: 0px !important;
        }




/**Section 3*/
.geology-tabs-section {
    padding: 50px;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 500;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    box-shadow: none !important;
    border-radius: 0px !important
}

.tab {
    background: none;
    display: block;
    border: none;
    font-size: 16px;
    padding: 10px 0;
    cursor: pointer;
    color: #ccc !important;
    position: relative;
    font-weight: 500;
}

    .tab.active {
        color: #000 !important;
    }

        .tab.active::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #000;
        }

.tab-content {
    display: none;
    max-height: fit-content !important
}

    .tab-content.active {
        display: block;
    }

    .tab-content p {
        color: #000 !important;
        font-weight: 400 !important;
    }

/* Reuse your earlier section styles here */
.geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.geo-text h2 {
    font-size: 32px;
    margin: 10px 0;
    color: black
}



.datasheet-btn {
    background-color: #8EC646;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
}

.geo-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.product-label {
    color: black !important;
    font-weight: 500 !important;
}

.sub-heading-1 {
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
}

/* Responsive adjustments */
/*@media (max-width: 900px) {
    .container-main {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .sidebar-left,
    .related-links {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

        .sidebar-left ul,
        .related-links ul {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

            .sidebar-left ul li,
            .related-links ul li {
                margin-bottom: 0;
            }
}
*/


.grid-section {
    display: grid;
    grid-template-columns: auto 40px auto auto 40px auto;
 /*   grid-template-rows: repeat(5, auto);*/
    gap: 10px 20px;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.text-item {
    text-align: right;
    font-family: Arial, sans-serif;
    font-size: 14px;
    grid-column: span 1;
}

    .text-item.right {
        text-align: left;
    }

.circle {
    width: 30px;
    height: 30px;
    border: 2px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.image-center {
  /*  grid-row: 1 / span 5;*/
    grid-column: 3 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .image-center img {
        width: 250px;
        height: auto;
        border-radius: 10px;
    }




   /**Insights section*/
.insight-section {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 40px 20px;
    background: #fff;
}

.video-thumbnail {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    max-width: 700px;
    width: 100%;
}

    .video-thumbnail img {
        width: 100%;
        display: block;
        border-radius: 20px;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10%;
    padding: 23px;
    cursor: pointer;
}

.insight-section h2 {
    margin: 30px 0;
    font-size: 24px;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

    .feature-box .icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .feature-box h3 {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .feature-box p {
        font-size: 14px;
        color: #444;
    }

    .feature-box.highlight {
        background: #f8f8f8;
        border-radius: 8px;
    }


    /**Media Section*/
.event-section {
    background-color: #75b042; /* green background */
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    color: white;
}

.event-content {
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.event-text {
    flex: 1 1 500px;
}

.event-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.event-details {
    font-size: 14px;
    margin-bottom: 10px;
}

.event-text h2 {
    font-size: 21px;
    font-weight: bold;
    margin: 10px 5px;
}

.event-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0;
}

.event-location {
    font-size: 14px;
    margin-bottom: 20px;
}

.event-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    font-size: 15px;
}

    .event-link span {
        font-size: 18px;
        margin-left: 4px;
    }

.event-image {
    flex: 1 1 400px;
    text-align: center;
}

    .event-image img {
        max-width: 100%;
        height: auto;
    }





/* Tablet View (768px and up) */
@media (min-width: 768px) and (max-width:1020px) {

    .container-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /*.container-main {
        grid-template-columns: 220px 1fr 180px;
    }*/

    .related-links {
        display: block;
    }

    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }



    .geo-grid, .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tabs {
        flex-direction: row;
    }
}

/* Desktop View (1024px and up) */
@media (min-width: 1024px) {

    .text-item {
        max-width: 45rem !important;
        line-height: 3rem;
    }

    .container-main {
        grid-template-columns: auto 1fr auto;
    }

    .related-links {
        display: block; /* Show on desktop */
    }

    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop View (1200px and up) */
/*@media (min-width: 1200px) {
    .container-main {
        max-width: 1400px;
        margin: 0 auto;
    }
}

*/



/* Large Desktop View (1200px and up) */
@media (min-width: 1200px) {
    .container-main {
        /*  max-width: 1400px;*/
        max-width: auto !important;
        margin: 0 auto !important;
    }
}



@media (min-width:768px) {
    .container-main {
        /*  max-width: 1400px;*/
        max-width: auto !important;
        margin: 0 auto !important;
        padding: 4rem !important;
    }
}
/*@media (min-width: 1200px) {
    .container-main {*/
        /*  max-width: 1400px;*/
        /*max-width: auto;
        margin: 0 auto;
    }
}



@media (min-width:768px) {
    .container-main {*/
        /*  max-width: 1400px;*/
        /*max-width: auto;
        padding: 4rem;
        margin: 0 auto;
    }

}*/



@media (min-width:900px) {
    .geology-suite {
        margin-top: 15rem
    }

    .video-thumbnail {
        margin-top: -15rem
    }
}


@media (max-width:900px){
    .geology-suite {
        background: linear-gradient(to bottom, white 30%, #f8f8f8 70%) !important;
    }

    .intro p{
        text-align:center !important;
    }

    .intro h1 {
        align-self: anchor-center !important;
    }
}

/* Specific Component Adjustments */
@media (max-width: 998px) {
    .geology-suite h2 {
        font-size: 18px;
    }


    #if-id {
        margin-top: 0rem !important;
    }


    .event-image {
        flex: 1 1 fit-content;
        text-align: center;
    }


    .sidebar-left {
        padding: 0px;
        display: none;
    }

    .container-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0px;
    }

    .text-item {
        font-size: 10px;
    }

    .image-center img {
        width: 135px;
    }

    .grid-section {
        padding: 0px;
    }
        /*.container-main {
        grid-template-columns: 220px 1fr 180px;
    }*/

        .related-links {
        display: block;
    }

    .grid-container {
        grid-template-columns: repeat(1, 1f);
    }



    .geo-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    .tabs {
        flex-direction: row;
    }

    .tab {
        font-size: 12px;
    }



    .sidebar-left {
        padding: 0px;
    }

    /* .content-main {
        width: 58%;
    }*/

    /* Mobile-specific adjustments */
    .intro h1 {
        font-size: 20px;
    }

    .intro button {
        width: 100%;
        padding: 12px;
    }

    .card {
        padding: 30px 15px;
    }

    .geology-tabs-section {
        padding: 20px 0px;
    }

    .geo-text h2 {
        font-size: 24px;
    }

    .datasheet-btn {
        width: 100%;
    }


    .container-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /*.container-main {
        grid-template-columns: 220px 1fr 180px;
    }*/

    .related-links {
        display: block;
    }

    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }



    .geo-grid, .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tabs {
        flex-direction: row;
    }


    .event-content {
        display: flex;
        /* flex-wrap: wrap; */
        align-items: baseline;
        max-width: 1200px;
        margin: 0 auto;
        gap: 3rem;
        flex-direction: column;
    }

    .event-image img {
        max-width: 70%;
        height: auto;
    }

    .event-text {
        /*flex: 1 1 300px;*/

        flex: 1 1 fit-content;
    }

    .grid-section {
        display: grid;
        /*grid-template-columns: 1fr 1fr;*/
/*                grid-template-columns: 1fr 1fr 1fr;*/

        /* gap: 20px;*/

        gap: 6rem 2rem;
        margin-top: 20px;
        align-items: start;
    }

        /* Force circle and text to align side-by-side in each cell */
        .grid-section .circle,
        .grid-section .text-item {
            display: inline-block;
            vertical-align: middle;
            align-items: center;
            padding-left: 0.9rem;
            padding-top: 0.3rem;
        }



        /*.grid-section .circle, .grid-section .text-item {
            display: inline-block;
            vertical-align: middle;
            align-items: center;
            justify-content: center;
            display: flex;
            left: 1rem;
            padding-left: 0.9rem;
        }*/

            /* Wrap circle + text together visually */
           /* .grid-section .circle::after {
                content: attr(data-text);
                display: inline-block;
                vertical-align: middle;
                margin-left: 10px;
                font-size: 14px;
                color: #000;
            }*/

/*
            .grid-section .circle::after {
                content: attr(data-text);
                display: inline-block;
                vertical-align: middle;
                width: 23rem;
                line-height: 2rem;
                margin-left: 3rem;
                font-size: 12px;
                color: #000;
                font-weight: 300;
                margin-top: -3.6rem;
            }*/

            .grid-section .circle::after {
                content: attr(data-text);
                display: inline-block;
                vertical-align: middle;
                width: 28rem;
                /* line-height: 2rem; */
                margin-left: 3rem;
                font-size: 12px;
                color: #000;
                font-weight: 300;
                margin-top: -0.6rem;
            }

        /* Hide original .text-item since we're injecting text from it */
        .grid-section .text-item {
            display: none !important;
        }

        /* Image block spans both columns */
        .grid-section .image-center {
            grid-column: 1 / -1;
            text-align: center;
        }

    .geology-suite {
        padding: 0px;
      /*  margin-top: 6rem;*/
    }

}

/*
@media (max-width:600px) {
    .grid-section .circle::after {
        content: attr(data-text);
        display: inline-block;
        vertical-align: middle;
        width: 9rem;
        margin-left: 3rem;
        font-size: 12px;
        color: #000;
        font-weight: 300;
        margin-top: -3.6rem;
    }


    .grid-section {
        gap: 55px 11px;
    }
}
*/

@media (max-width:400px) {
    .content-main {
        padding: 40px 20px;
    }
}





/* Prevent horizontal scrolling */
        html, body {
    overflow-x: hidden;
    width: 100%;
}





@media (max-width: 767px) {
   

        .grid-section .text-item {
            display: none !important;
        }

    /*    .grid-section .circle {
            position: relative;
            margin: 20px auto;
        }

            .grid-section .circle::after {
                content: attr(data-text);
                display: block;
                width: 100%;
                margin-top: 10px;
                font-size: 14px;
                color: #000;
                text-align: center;
                white-space: normal;
            }

    .image-center {
        margin: 20px auto;
        grid-column: 1 !important;
    }*/
}





@media (min-width:1300px) and (max-width:1819px){
    .left-image img {
        height: 26rem;
    }

    .right-content h1 {
        font-size: 30px !important;
    }

    .demo-button {
        padding: 1.4rem 4.5rem !important;
    }

    .grid-section {
        padding: 40px 10px !important;
    }

    .text-item {
        font-size: 12px !important; 
    }
}


@media (min-width:1000px) and (max-width:1299px){
    .grid-section {
        padding: 40px 10px !important;
    }

    .text-item {
        font-size: 12px !important;
    }
}


@media (max-width:998px){
   .gverse-ad{
       display:none !important
   }



    .text-item {
        font-size: 14px !important;
    }


}




@media (max-width: 998px) {
    .grid-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

        /* Hide all desktop layout elements */
      /*  .grid-section > .text-item,
        .grid-section > .circle {
            display: none;
        }*/

    /* Center image comes first */
    .image-center {
        order: -1;
        margin: 0 auto 20px;
        width: 100%;
        max-width: 300px;
    }

    /* Points container - 2 column layout */
    .mobile-points-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* Each point item */
    .mobile-point {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    /* Circle styling */
    .circle {
       
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        flex-shrink: 0;
        margin-top: 3px;
    }

    /* Text item styling */
    .text-item {
        margin: 0;
        text-align: left;
        font-size: 14px;
        display: block !important;
    }

    /* Mobile-specific elements */
    .mobile-points-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .image-center img {
        width: 350px;
        height: 17rem;
    }

    .mobile-point {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

        .mobile-point .circle {
            margin-right: 10px;
        }

        .mobile-point .text-item {
            flex: 1;
        }
}