

        .section-3 {
            background-color: #1f1f1f;
            color: white;
        }

        .introduction-section-intro-blue {
            background-color: #1f1f1f;
            color: white;
            padding: 2vh 0vw;
        }

        .section-3 .badge-custom {
            background: transparent;
            border: 1px solid white;
            color: white;
            font-size: 0.7rem;
            padding: 0.4rem 0.8rem;
            border-radius: 999px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .section-3 .heading-large {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .section-3 .gradient-text {
            background: linear-gradient(to top, #ffc55a 50%, white 50%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-3 .underline {
            border-top: 1px solid white;
            margin: 1rem 0;
        }

        .section-3 .right-image img {
            max-width: 100%;
            height: 100vh;
            border-left: 1px solid white;
            object-fit: cover;
        }
    

        /* ========================================= */

        
        .section-2 .badge-custom {
            background: transparent;
            border: 1px solid black;
            color: black;
            font-size: 0.7rem;
            padding: 0.4rem 0.8rem;
            border-radius: 999px;
            text-transform: uppercase;
            display: inline-block;
        }

        .section-2 .client-column a {
            display: inline-block;
            font-size: 1.25rem;
            font-weight: 500;
            color: black;
            text-decoration: none;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .section-2 .client-column a:hover {
            transform: translateY(-5px);
            color: #333;
        }

        .section-2 .divider {
            border-left: 1px solid #000;
            height: 100%;
            width: 1px;
            margin: 0 auto;
        }

        @media (max-width: 767.98px) {
            .section-2 .divider {
                display: none;
            }

            .section-2 .client-column {
                text-align: center;
                margin-top: 2rem;
            }
        }
    

        /* ========================================= */

        
        .section-updates {
            padding: 5rem 1rem;
            background-color: #000;
        }

        .section-updates .badge-custom {
            background: transparent;
            border: 1px solid #ffc55a;
            color: #ffc55a;
            font-size: 0.7rem;
            padding: 0.4rem 0.8rem;
            border-radius: 999px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .update-card {
            position: relative;
            overflow: hidden;
        }

        .update-card .label {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: white;
            color: black;
            font-size: 0.65rem;
            font-weight: bold;
            padding: 0.3rem 0.7rem;
            border-radius: 999px;
            z-index: 2;
        }

        .update-card img,
        .update-card video {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .update-description {
            padding: 1.5rem 0;
            text-align: center;
        }

        .update-description strong {
            font-weight: 700;
        }

        @media (max-width: 767.98px) {
            .update-description {
                padding: 1rem 0;
            }
        }
