
        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            text-align: center;
        }

        .browser-logo {
            width: 178px;
            height: 178px;
            object-fit: contain;
            background-color: #102442;
            border-radius: 8px;
            padding: 20px;
        }

        .content-text {
            max-width: 600px;
        }

        .description {
            font-size: 1.2em;
            color: #555;
            margin-bottom: 30px;
        }

        .download-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
        }

        .google-play-button {
            height: 60px;
            margin-top: 8px;
        }

        .download-now {
            background-color: #0066ff;
            color: white;
            padding: 6px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1em;
            transition: background-color 0.3s;
        }

        .download-now:hover {
            background-color: #0052cc;
        }

        @media (max-width: 768px) {
            .content-wrapper {
                gap: 30px;
            }

            .browser-logo {
                width: 250px;
                height: 250px;
            }

            h1 {
                font-size: 2em;
            }

            .description {
                font-size: 1.1em;
            }

            .download-buttons {
                flex-direction: column;
            }
        }