    body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            /* background-color: #f9f9f9; */
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            padding: 10px;
            box-sizing: border-box;
        }

        .hero-image {
            max-width: 400px;
            width: 100%;
            height: auto;
            display: block;
            margin: 10px auto;
            margin-top: 100px;
            /* cursor: pointer; */
        }

        .text-section {
            max-width: 1000px;
            text-align: center;
            margin: 20px auto;
        }

        .text-section h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        .text-section p {
            font-size: 1.1em;
            line-height: 1.6;
            color: #333;
        }

        .full-image {
            max-width: 1200px;
            width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            cursor: pointer;
        }

        .video-text-section {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            margin: 20px 0;
            gap: 20px;
        }

        .video-container {
            max-width: 350px;
            /* max-height: 550px; */
            /* width: 100%; */
            overflow: hidden;
        }

        .video-container video {
            width: 100%;
            /* height: auto; */
        }

        .text-container {
            flex: 1;
        }

        .text-container h2 {
            font-size: 2em;
            margin-bottom: 10px;
        }

        .text-container p {
            font-size: 1.1em;
            line-height: 1.5;
        }

        .alternating-section {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin: 40px 0;
            gap: 20px;
        }

        .alternating-section.reverse {
            flex-direction: row-reverse;
        }

        .section-image-container {
            max-width: 50%;
            width: 100%;
            text-align: center;
        }

        .section-image {
            max-width: 500px;
            max-width: 450px;
            object-fit: cover;
            border-radius: 8px;
            height: auto;
            cursor: pointer;
        }

        .subtitle {
            font-style: italic;
            font-size: 0.9em;
            margin-top: 10px;
            color: #666;
        }

        .section-text {
            max-width: 50%;
            width: 100%;
        }

        .section-text h3 {
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .section-text p {
            font-size: 1.1em;
            line-height: 1.5;
        }

        /* Modal for image zoom */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
            justify-content: center;
            align-items: center;
        }

        .modal img {
            max-width: 90%;
            max-height: 90%;
            margin: auto;
        }

        /* Responsive */
        @media (max-width: 768px) {

            .hero-image{
                max-width: 60%;
                margin: 10px auto;
                margin-top: 80px;
            }

               .section-text h3 {
            text-align: left;
        }
             .section-text p {
            text-align: left;
        }
            .video-text-section {
                flex-direction: column;
                align-items: center;
            }

            .video-container {
                max-width: 100%;
                margin-bottom: 20px;
            }

            .text-container {
                text-align: center;
            }

            .alternating-section,
            .alternating-section.reverse {
                flex-direction: column;
            }

            .section-image-container,
            .section-text {
                max-width: 100%;
                text-align: center;
            }

            .section-text {
                margin-bottom: 20px;
            }

            .section-image-container {
                margin-bottom: 20px;
            }
        }