        /* Reset and Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f4f4f9;
            padding: 0px;
        }

        /* Main Container: Uses Flexbox */
        .split-container {
            display: flex;
            flex-direction: row; /* Horizontal by default */
            gap: 10px;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 30vh;
        }

        /* Individual Column Styling */
        .column {
            flex: 1; /* Gives both containers equal width */
            background: #ffffff;
            padding: 10px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Visual distinction for columns */
        .left-side {
            border-right: 10px solid #ffffff;
            border-left: 10px solid #ffffff;
        }
        .right-side {
            border-right: 10px solid #ffffff;
            border-left: 10px solid #ffffff;
            background: #ffffff;
            color: #ffffff;
        }

        /* Typography */
        h1, h2 {
            margin-bottom: 10px;
            font-size: 2.5rem;
        }
        p {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        /* Responsive Breakpoint for Small Devices */
        @media (max-width: 768px) {
            .split-container {
                flex-direction: column; /* Stack vertically on smaller screens */
            }
            .column {
                padding: 0px;
            }
            h1, h2 {
                font-size: 2rem;
            }
        }