        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
            background-color: #3e20b6;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 1rem;
        }

        .main-container {
            max-width: 32rem;
            width: 100%;
            background-color: #4f32c7;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(100, 70, 255, 0.2), 0 4px 6px -2px rgba(100, 70, 255, 0.1);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .main-container {
                padding: 2rem;
            }
        }

        .logo-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 0.3rem;
        }
        .logo-wrapper img {
            width: 6rem;
            height: 6rem;
            border-radius: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(100, 70, 255, 0.2), 0 2px 4px -1px rgba(100, 70, 255, 0.1);
        }

        .app-title {
            font-size: 2.25rem;
            font-weight: 700;
            text-align: center;
            color: #ffffff;
            margin-top: 0.2rem;
            margin-bottom: 0.2rem;
        }

        .intro-text {
            color: #e5e7eb;
            font-size: 1rem;
            line-height: 1.625;
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .download-button-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 25rem;
        }
        .download-button {
            width: 100%;
            max-width: 14rem;
            background-image: linear-gradient(to right, #ffbb61, #e6a757);
            color: #ffffff;
            font-weight: 700;
            padding: 1.5rem 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            text-align: center;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
        }
        .download-button:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            transform: scale(1.05);
        }

        .download-hint {
            color: #d1d5db;
            font-size: 0.875rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f9fafb;
            text-align: center;
            margin-bottom: 1rem;
        }

        .app-images-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        .app-images-grid img {
            width: 100%;
            height: auto;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(100, 70, 255, 0.2), 0 2px 4px -1px rgba(100, 70, 255, 0.1);
        }

        .content-card {
            background-color: #4f32c7;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: inset 0 2px 4px 0 rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .step-number {
            flex-shrink: 0;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fb0a72;
            color: #ffffff;
            border-radius: 9999px;
            font-weight: 700;
        }
        .step-text {
            color: #e5e7eb;
            margin-top: 0;
            margin-bottom: 0;
        }

        .faq-item {
            display: flex;
            flex-direction: column;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 1rem;
        }
        .faq-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .faq-item h3 {
            flex-basis: 100%;
            font-weight: 600;
            font-size: 1.125rem;
            color: #f9fafb;
            margin-bottom: 0.5rem;
            padding-right: 0;
        }

        .faq-item p {
            flex-basis: 100%;
            color: #e5e7eb;
            margin-bottom: 0;
        }

        .footer-text {
            text-align: center;
            color: #d1d5db;
            font-size: 0.875rem;
            margin-top: 2rem;
        }