        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body,
        html {
            height: 100%;
            overflow: hidden;
        }

        .container-fluid {
            height: 100vh;
            padding: 0;
        }

        .left-section {
            background: #005896;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            height: 100vh;
        }

        .right-section {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            background-color: #e8f4f8;
        }

        .right-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .download-title {
            color: white;
            font-size: 36px;
            font-weight: 700;
            margin: 20px 0px;
            text-align: center;
        }

        .store-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .store-btn {
            display: block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .store-btn img {
            height: 70px;
            width: auto;
            border-radius: 8px;
        }

        .store-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .left-section {
                height: auto;
                min-height: 100vh;
            }

            .right-section {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .left-section {
                padding: 30px 20px;
            }

            .download-title {
                margin-bottom: 20px;
            }

            .store-btn img {
                height: 55px;
            }

            .store-buttons {
                gap: 12px;
            }
        }