 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fc; /* Light background */
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        /* Container Layout */
        .container {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
            gap: 50px;
        }

        /* Left Side Content */
        .left-content {
            flex: 1;
            padding-right: 20px;
        }

        /* Headings and Text */
        h1 {
            font-size: 36px;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        p.description {
            font-size: 16px;
            color: #4a4a4a;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 500px;
        }

        /* CTA Button */
        .cta-button {
            background-color: #6d3df5; /* Purple color */
            color: #ffffff;
            border: none;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 15px rgba(109, 61, 245, 0.3);
        }

        .cta-button:hover {
            background-color: #5a2cd6;
            transform: translateY(-2px);
        }

        /* Right Side SVG Graphic */
        .right-graphic {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .right-graphic svg {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 12px;
            /* Subtle shadow for the floating effect */
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05)); 
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .left-content {
                padding-right: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            p.description {
                text-align: center;
            }

            .right-graphic {
                width: 100%;
            }
        }