        
        @font-face {
            font-family: 'FF Meta Web Pro';
            src: local('FF Meta Web Pro'), local('ff-meta-web-pro');
            font-weight: normal;
            font-style: normal;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "ff-meta-web-pro", "FF Meta Web Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
            background-color: white;
            padding: 20px;
            position: relative;
        }

        /* Split background */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background-color: #1f78ff;
            z-index: -1;
        }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            background-color: transparent;
            padding: 20px;
        }

        /* Title images section */
        .title-section {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .title-image-1 {
            width: 640px;
            height: 160px;
            flex-shrink: 1;
        }

        .title-image-1 img {
            width: 100%;
            height: auto;
        }

        .title-image-2 {
            width: 470px;
            height: 160px;
            flex-shrink: 1;
        }

        .title-image-2 img {
            width: 100%;
            height: auto;
            
        }

        /* Header carousel */
        .header-carousel {
            width: 100%;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .header-carousel-mobile {
            display: none;
        }

        .carousel-wrapper {
            width: 100%;
            position: relative;
            padding-bottom: 50.88%; /* 580/1140 = 50.88% for 1140x580 aspect ratio */
            overflow: hidden;
            background-color: #000;
        }

        .carousel-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            width: 100%;
            height: 100%;
            flex-shrink: 0;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            font-size: 24px;
            padding: 10px 15px;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s;
        }

        .carousel-nav:hover {
            background-color: rgba(255, 255, 255, 1);
        }

        .carousel-prev {
            left: 10px;
        }

        .carousel-next {
            right: 10px;
        }

        .carousel-dots {
            text-align: center;
            position: absolute;
            bottom: 15px;
            width: 100%;
            z-index: 10;
        }

        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: rgba(255, 255, 255, 1);
        }

        /* Wide image section under header */
        .wide-image-section {
            width: 100%;
            margin-bottom: 30px;
        }

        .wide-image-desktop {
            display: block;
        }

        .wide-image-desktop img {
            width: 100%;
            height: auto;
            display: block;
        }

        .wide-image-mobile {
            display: none;
        }

        .wide-image-mobile img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Two images section */
        .two-images {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .image-half {
            width: 555px;
            flex-shrink: 1;
        }

        .image-half img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* YouTube video section */
        .video-container {
            width: 100%;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Text block */
        .text-block {
            width: 100%;
            padding: 0px;
            background-color: #ffff;
            line-height: 1.6;
            color: #ffffff;
        }

        .text-block h2 {
            margin-bottom: 20px;
            color: #ffffff;
        }

        .text-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .text-column {
            padding: 0;
        }

        .text-column h3 {
            margin-bottom: 15px;
            font-size: 1.2em;
            color: #ffffff;
        }

        .text-column img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Desktop: single wide image */
        .text-block-desktop {
            display: block;
        }

        .text-block-desktop img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Mobile: 3 columns */
        .text-block-mobile {
            display: none;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .title-section {
                flex-direction: column;
                gap: 20px;
            }

            .title-image-1,
            .title-image-2 {
                width: 100%;
                height: 160px;
            }

            .header-carousel {
                display: none;
            }

            .header-carousel-mobile {
                display: block;
            }

            .header-carousel-mobile .carousel-wrapper {
                padding-bottom: 100%; /* Square aspect ratio for mobile */
            }

            .wide-image-desktop {
                display: none;
            }

            .wide-image-mobile {
                display: block;
            }

            .carousel-nav {
                font-size: 18px;
                padding: 8px 12px;
            }

            .two-images {
                flex-direction: column;
                gap: 20px;
            }

            .image-half {
                width: 100%;
            }

            .text-block {
                padding: 15px;
            }

            .text-block-desktop {
                display: none;
            }

            .text-block-mobile {
                display: block;
            }

            .text-columns {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* Tablet adjustments */
        @media (max-width: 1180px) and (min-width: 769px) {
            .container {
                max-width: 100%;
            }

            .title-section {
                gap: 20px;
            }

            .title-image-1 {
                width: calc(640px * 0.8);
            }

            .title-image-2 {
                width: calc(470px * 0.8);
            }

            .two-images {
                gap: 20px;
            }

            .image-half {
                width: calc((100% - 20px) / 2);
            }
        }