/* Download Page */
.download-hero {
    margin-top: 72px;
    padding: 6rem 1.5rem;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 72px auto 0;
    gap: 2rem;
}

.hero-content {
    flex: 4;
    max-width: 40%;
    position: relative;
    z-index: 2;
}

.download-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.25rem;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--color-gray-700);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.download-hero h2 {
    font-size: 1.75rem;
    color: var(--color-hero-text);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.store-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.store-badges a {
    display: block;
    transition: transform 0.2s ease;
}

.store-badges a:hover {
    transform: translateY(-2px);
}

.store-badges img {
    display: block;
    height: 52px;
    width: auto;
}

.hero-image {
    flex: 6;
    max-width: 60%;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile styles */
@media (max-width: 1024px) {
    .download-hero {
        padding: 4rem 1.5rem;
    }

    .download-hero h1 {
        font-size: 2.75rem;
    }

    .download-hero h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .download-hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
        margin-top: 60px;
    }

    .hero-content {
        flex: 1;
        max-width: 100%;
    }

    .store-badges {
        justify-content: center;
    }

    .hero-image {
        flex: 1;
        max-width: 100%;
        margin-top: 2rem;
        order: -1;
    }

    .download-hero h1 {
        font-size: 2.25rem;
    }

    .download-hero h2 {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .store-badges {
        flex-direction: column;
        gap: 1rem;
    }
} 