 .main-section {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .main-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .section-container {
            display: flex;
            align-items: center;
            min-height: 500px;
        }

        .content-side {
            flex: 1;
            padding: 60px;
            background: linear-gradient(135deg, #0f0096 0%, #db7500 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .content-side::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(45deg);
            transition: transform 0.6s ease;
        }

        .main-section:hover .content-side::before {
            transform: rotate(45deg) scale(1.1);
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        .company-logo {
            width: 120px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-weight: bold;
            font-size: 14px;
            backdrop-filter: blur(10px);
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .subtitle {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .features-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            opacity: 0.9;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4ade80;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .cta-button {
            background: linear-gradient(45deg, #4ade80, #22c55e);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
        }

        .image-side {
            flex: 1;
            height: 500px;
            position: relative;
            overflow: hidden;
            background: #f8fafc;
        }

        .image-container {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .image-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .image-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .main-section:hover .image-slide::before {
            opacity: 1;
        }

        /* Sample images - replace with your actual images */
        .image-slide:nth-child(1) {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .image-slide:nth-child(2) {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .image-slide:nth-child(3) {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .image-slide:nth-child(4) {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .image-placeholder {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            padding: 20px;
            background: rgba(0,0,0,0.3);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(255,255,255,0.9);
            border-radius: 20px;
            padding: 8px 15px;
            font-size: 0.8rem;
            color: #666;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .main-section:hover .scroll-indicator {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-container {
                flex-direction: column;
            }

            .content-side {
                padding: 40px 30px;
            }

            .main-title {
                font-size: 2rem;
            }

            .image-side {
                height: 300px;
            }
        }