.download-section {
    margin-top: 100px;
    padding: var(--spacing-4xl) var(--spacing-5xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    gap: var(--spacing-lg);
    text-align: center;
}

.download-section-text-1 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-5xl);
    line-height: var(--line-height-snug);
    letter-spacing: 2%;
    color: var(--text-primary);
}

.download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2xl);
    max-width: 600px;
}

.app-download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
}

.download-store-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    width: 100%;
    max-width: 400px;
}

.download-store-section a,
.store-link {
    display: block;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
    width: auto;
    height: auto;
}

.download-store-section a:hover,
.store-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.download-store-section img {
    height: 60px !important;
    width: 180px !important;
    object-fit: contain !important;
    max-width: 180px !important;
    max-height: 60px !important;
}

@media (max-width: 480px) {
    .download-section {
        padding: var(--spacing-4xl) var(--spacing-xl);
    }
    
    .download-section-text-1 {
        font-size: var(--font-size-2xl) !important;
    }
    
    .download-store-section img {
        height: 45px !important;
        width: 140px !important;
        max-width: 140px !important;
        max-height: 45px !important;
    }
}
