    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #000000;
            color: #ffffff;
            line-height: 1.5;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Horizontal Scrolling Section */
        .horiz-wrapper {
            width: 100%;
            height: 100vh;
            min-height: clamp(600px, 100vh, 100vh);
            overflow: hidden;
            position: relative;
            perspective: 1000px;
            background: #000000;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: scroll;
        }

        .horiz-sections {
            width: 500%; /* 5 panels */
            height: 100%;
            min-height: inherit;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            position: relative;
            z-index: 2;
        }

        .horiz-section {
            width: 100vw;
            height: 100%;
            min-height: inherit;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        .horiz-section-card-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: clamp(0.5rem, 4vw, 2rem);
            box-sizing: border-box;
            position: relative;
            z-index: 3;
        }

        .horiz-card-container {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .horiz-card-base {
            background-color: rgba(255, 255, 255, 0.95);
            color: #333;
            border-radius: clamp(8px, 2.5vw, 16px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .horiz-single-card {
            display: flex;
            flex-direction: row;
            gap: clamp(1rem, 4vw, 2rem);
            padding: clamp(1.5rem, 6vw, 3rem);
            max-width: clamp(400px, 90vw, 800px);
            width: 90%;
            align-items: center;
            min-height: clamp(300px, 50vh, 400px);
        }

        .horiz-card-image-left {
            flex: 0 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            width: clamp(80px, 15vw, 120px);
            height: clamp(80px, 15vw, 120px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            padding: clamp(1rem, 3vw, 1.5rem);
        }

        .horiz-card-text-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .horiz-single-card h2 {
            font-size: clamp(1.25rem, 4.5vw, 2rem);
            font-weight: 700;
            margin: 0 0 clamp(0.75rem, 2vw, 1rem) 0;
            color: #2c3e50;
            line-height: 1.2;
        }

        .horiz-single-card p {
            font-size: clamp(0.875rem, 3.5vw, 1.125rem);
            font-weight: 400;
            line-height: 1.6;
            color: #5a6c7d;
            margin: 0;
        }

        /* Hover Effects */
        @media (hover: hover) and (pointer: fine) {
            .horiz-card-base:hover {
                transform: translateY(-5px) scale(1.02);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .horiz-wrapper {
                min-height: clamp(500px, 80vh, 100vh);
            }
            
            .horiz-single-card {
                flex-direction: column;
                gap: clamp(0.75rem, 3vw, 1.5rem);
                padding: clamp(1rem, 4vw, 2rem);
                text-align: center;
                max-width: 95vw;
            }
            
            .horiz-card-image-left {
                width: clamp(60px, 12vw, 100px);
                height: clamp(60px, 12vw, 100px);
            }
            
            .horiz-card-text-right {
                align-items: center;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .horiz-wrapper {
                min-height: clamp(450px, 70vh, 80vh);
            }
            
            .horiz-single-card {
                padding: clamp(0.75rem, 3vw, 1.5rem);
                gap: clamp(0.5rem, 2.5vw, 1rem);
                min-height: clamp(250px, 40vh, 350px);
            }
            
            .horiz-card-image-left {
                width: clamp(50px, 10vw, 80px);
                height: clamp(50px, 10vw, 80px);
                padding: clamp(0.75rem, 2vw, 1rem);
            }
        }