        .con-button {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-weight: 300;
            margin-left: 9.45%;
            border: 1px solid #304ffe;
            margin-bottom: 5%;
            background: transparent;
            text-transform: uppercase;
            color: #304ffe;
            padding: 21.75px 30.75px;
            border-radius: 12px;
            box-shadow: 0 9px 15.75px rgba(0,0,0,0.1);
            text-decoration: none;
            font-size: 1.21rem;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
        }
        .con-button i {
            font-size: 1.21rem;
        }
        .con-button:hover {
            background: #304ffe;
            box-shadow: 0 9px 15.75px rgba(0,0,0,0.3);
            color: #fff;
        }
        h6 {
            padding-top: 55px;
            padding-bottom: 55px;
            padding-left: 9%;
            padding-right: 9%;
            color: #ffffff;
            font-size: 3rem;
            font-weight: 400;
            margin: 0 auto;
            background-size: 55px 55px; 
            background-image: repeating-linear-gradient(180deg, #212121 0 0.5px, transparent 1px 55%);
            background-position: 0 0, 0 0;
        }
        @media (max-width: 375px) {
        h6 {
            font-size: 1.21rem;
        }
        }
        @media (max-width: 415px) {
        h6 {
            font-size: 1.75rem;
        }
        }
        @media (min-width: 416px) and (max-width: 515px) {
        h6 {
            font-size: 2.15rem;
        }
        }
        @media (min-width: 516px) {
        h6 {
            font-size: 3rem;
        }
        }
        .content-section {
            display: flex;
            flex-wrap: wrap;
            background-color: transparent;
            overflow: hidden;
            position: relative;
            min-height: 245px;
        }
        .image-container {
            flex: 1 1 45%;
            position: relative;
            overflow: hidden;
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }
        .text-content {
            flex: 1 1 55%;
            padding: 45px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }
        .text-content p {
            font-size: 1.05rem;
            color: #ffffff; 
            margin-bottom: 15px;
        }
        .image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        .content-section:not(.section-reverse) .image-container::after {
            background: linear-gradient(to right, 
                        rgba(0, 0, 0, 0) 0%, 
                        rgba(0, 0, 0, 0.5) 75%,
                        rgba(0, 0, 0, 0.9) 100%);
        }
        .content-section.section-reverse .image-container::after {
            background: linear-gradient(to left, 
                        rgba(0, 0, 0, 0) 0%, 
                        rgba(0, 0, 0, 0.5) 75%,
                        rgba(0, 0, 0, 0.9) 100%);
        }
        .section-reverse {
            flex-direction: row-reverse;
        }
        @media (max-width: 745px) {
            .content-section, .section-reverse {
                flex-direction: column;
                min-height: auto;
            }
            .image-container, .text-content {
                flex-basis: 100%;
                min-width: unset;
            }
            .image-container::after {
                background: none !important; 
            }
        }
        @media (max-width: 475px) {
            .text-content {
                padding: 21px;
            }
            .text-content p {
                font-size: 1rem;
            }
        }
        .brand-carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-top: 1px solid #303030;
            border-bottom: 1px solid #303030;
            line-height: 0;
            padding: 15px 0;
            margin: 0 auto;
        }
        .brand-track {
            display: flex;
            gap: clamp(15px, 1.51vw, 15.75px);
            transition: none;
            will-change: transform;
        }
        .brand-box {
            width: calc(3 * clamp(45px, 5vw, 55.75px));
            height: clamp(45px, 5vw, 55.75px);
            margin-left: 15px;
            margin-right: 15px;
            flex-shrink: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
            transition: opacity 0.5s ease;
            overflow: hidden;
        }
        .brand-box img {
            height: 55.775%;
            width: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: none;
            user-select: none;
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            o-user-drag: none;
            user-drag: none;
            pointer-events: none;
        }
        .brand-carousel-container::before,
        .brand-carousel-container::after {
            content: "";
            position: absolute;
            top: 0;
            width: 15vw;
            height: 100%;
            z-index: 10;
            pointer-events: none;
        }
        .brand-carousel-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, transparent 100%);
        }
        .brand-carousel-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, transparent 100%);
        }