
        body {
            height: 100%;
            margin: 0;
            font-family: 'Rubik', sans-serif;
            overflow-x: hidden;
            background-color: #ffffff;
        }

        .main-container {
            display: flex;
            min-height: 100vh;
            width: 100%;
            align-items: center;
        }

        .content-column {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
            z-index: 10;
        }

        .logo {
            
            height: auto;
            margin-bottom: 1.5rem;
        }
        
        .logo-img {
            width: 100%;
        }

        .subtitle {
            color: #555;
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .coming-soon-text {
            font-family: 'Dancing Script', cursive;
            font-size: 6rem;
            color: #333;
            line-height: 1.2;
            margin-bottom: 3rem;
        }

        .action-buttons .btn-prim {
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 500;
            margin-right: 1rem;
            border: 2px solid #fdc800;
            color: #fdc800;
            transition: all 0.3s ease;
        }

        .action-buttons .btn-prim:hover {
            background-color: #fdc800;
            color: #fff;
        }

        
        
        .image-collage-column {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        .elegant-collage {
            position: relative;
            width: 100%;
            height: 450px; 
            max-width: 450px;
        }

        .collage-tile {
            position: absolute;
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 16px; 
            background-color: #f0f2f5;
            box-shadow: 0 8px 16px rgba(0,0,0,0.07);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
        }
        
        .collage-tile:hover {
            transform: scale(1.08) !important; 
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
            z-index: 20;
        }

        .tile-1 { 
            top: 50%; 
            left: 50%; 
            transform: translate(-50%, -50%) rotate(2deg);
            z-index: 5;
        }
        
        .tile-2 { 
            top: 15%; 
            left: 15%; 
            transform: rotate(-8deg);
        }
        
        .tile-3 { 
            top: 15%; 
            right: 15%; 
            transform: rotate(8deg);
        }
        
        .tile-4 { 
            top: 50%; 
            left: 0; 
            transform: translateY(-50%) rotate(5deg);
        }
        
        .tile-5 { 
            top: 50%; 
            right: 0; 
            transform: translateY(-50%) rotate(-5deg);
        }
        
        .tile-6 { 
            bottom: 15%; 
            left: 15%; 
            transform: rotate(-6deg);
        }
        
        .tile-7 { 
            bottom: 15%; 
            right: 15%; 
            transform: rotate(6deg);
        } 

        @media (max-width: 992px) {
            .main-container {
                flex-direction: column;
            }
            .content-column {
                text-align: center;
                padding: 3rem 1.5rem;
                align-items: center;
                margin-top: 150px;
            }
            .coming-soon-text {
                font-size: 4rem;
            }
            .image-collage-column {
                min-height: auto;
                padding: 1rem 0 3rem 0; 
                margin-top: -120px;
            }
            .elegant-collage {
               
                transform: scale(0.85);
                height: 400px; 
            }
        }
        
        @media (max-width: 576px) {
            .coming-soon-text {
                font-size: 3.5rem;
                margin-bottom: 2rem;
            }
            .subtitle {
                font-size: 0.9rem;
            }
            .action-buttons {
                display: flex;
                flex-direction: column;
                width: 100%;
            }
            .action-buttons .btn-prim {
                margin-right: 0;
                margin-bottom: 1rem;
                width: 100%;
            }
            .elegant-collage {
                
                transform: scale(0.75);
                height: 380px;
            }
        }

        @media  (min-width: 1024px) and  (max-width: 1300px){
            .subtitle {
                margin-top: 130px;
            }

           
        }

        